{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] 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 04-17 18:28:36] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:41] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:46] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:50] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:54] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:57] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:00] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:03] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:05] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:08] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:12] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:16] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:20] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:23] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:26] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:30] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:34] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:37] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:40] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:44] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:47] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:50] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:54] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:57] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.2149878756112262,\n", " 'x2': 0.18347267930028743,\n", " 'x3': 0.42621150753425596,\n", " 'x4': 0.2893253586413634,\n", " 'x5': 0.3012820696965888,\n", " 'x6': 0.6700314735226648}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9407221025030439, 'hartmann6': -3.274359921544269}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.1640947870234255, -2.225938141946417, -2.284600388722625, -2.3393876603663637, -2.389588865829956, -2.4344936115929516, -2.4734140304810857, -2.5057097082742095, -2.530814182683377, -2.5482607535487034, -2.557704752080271, -2.558939232457302, -2.5519016171427675, -2.5366703560560744, -2.51345281889739, -2.4825674863653386, -2.4444241230822117, -2.3995048735199487, -2.348347781073334, -2.2915328994171014, -2.229670396292275, -2.1633898761098314, -2.0933303655607056, -2.0201307612927777, -1.9444208366195432, -1.866813053163642, -1.7878954242444343, -1.7082255851310608, -1.6283261074454518, -1.5486809988484036, -1.4697332743720137, -1.391883469438341, -1.3154889725221124, -1.2408640722231148, -1.1682806284833978, -1.0979692862216632, -1.0301211520092852, -0.9648898533401289, -0.9023938987009354, -0.8427192572962238, -0.785922080908775, -0.7320314968828587, -0.6810524098567121, -0.6329682596740902, -0.5877436929682154, -0.5453271155456112, -0.5056531014519265, -0.4686446422455375, -0.4342152264642589, -0.4022707445822691 ], [ -2.1988321313160153, -2.262129140600696, -2.322182899321003, -2.3782748860632457, -2.4296675747358454, -2.475623410280726, -2.515428101167007, -2.548417323581333, -2.574005087912008, -2.591711174275563, -2.601184433879823, -2.6022186893735064, -2.5947587716262084, -2.5788959966053504, -2.5548546536894303, -2.522972865040048, -2.4836816446832546, -2.437485113620628, -2.3849433254387185, -2.3266578242016758, -2.2632593086614703, -2.1953966202459645, -2.123726494900364, -2.04890386996551, -1.9715728294921049, -1.8923584170034637, -1.8118595456574889, -1.7306431464399996, -1.649239580406622, -1.5681392478601217, -1.4877902749684044, -1.4085971437452018, -1.330920140476488, -1.2550755153746556, -1.1813362618545695, -1.1099334328151909, -1.0410579139725704, -0.9748625734242954, -0.9114647054212432, -0.8509486870763745, -0.7933687704594821, -0.738751939119247, -0.6871007667970612, -0.6383962259773, -0.5926004040504513, -0.5496590945533826, -0.5095042397468164, -0.4720562084589617, -0.4372258995971745, -0.404916667042166 ], [ -2.229799682988359, -2.294368967755278, -2.3556378896757586, -2.4128659486257735, -2.465292031437267, -2.51215435852987, -2.5527151467504408, -2.5862889922309837, -2.612272994299532, -2.630175678029752, -2.6396411474420756, -2.6404649911214477, -2.6325995514747187, -2.616148191078604, -2.5913505179514935, -2.5585621752747514, -2.5182330672288997, -2.47088690273348, -2.4171034324665652, -2.357503472808645, -2.2927361075711628, -2.22346731531284, -2.1503694801660633, -2.074111573455643, -1.9953500683895662, -1.9147207887188027, -1.8328318952670655, -1.750258131727885, -1.667536343905772, -1.585162199035743, -1.5035879826548229, -1.4232213373024387, -1.3444248168773754, -1.2675161482395263, -1.1927691073520363, -1.120414926472832, -1.0506441518796286, -0.9836088710624918, -0.9194252273717357, -0.8581761410379255, -0.7999141592975327, -0.7446643649946236, -0.6924272817643098, -0.6431817237822524, -0.596887548191674, -0.5534882780035895, -0.5129135720584077, -0.475081526304993, -0.43990079712288255, -0.4072725427215196 ], [ -2.2567264481769604, -2.322368545190967, -2.3846587089775895, -2.4428376750305456, -2.4961241957128153, -2.543735826750477, -2.5849147955431513, -2.6189578781368867, -2.6452480925843163, -2.6632849299069963, -2.67270920010175, -2.6733188217801938, -2.6650732752882305, -2.648086720678966, -2.6226121399529383, -2.589020309632585, -2.5477774408162053, -2.4994242299462623, -2.444557596199603, -2.383815190739436, -2.3178621221901756, -2.247379208448531, -2.173052247627857, -2.0955620937870427, -2.0155755717053796, -1.9337373938653308, -1.8506632497738211, -1.766934165906067, -1.6830921383380546, -1.5996369604198337, -1.5170241226444479, -1.4356636497369193, -1.3559197491413013, -1.27811116212178, -1.2025121239575656, -1.129353848908605, -1.0588264588960423, -0.9910812746978848, -0.9262333878761699, -0.8643644328200395, -0.8055254822127722, -0.7497399958727027, -0.6970067615995383, -0.6473027764603634, -0.6005860270028174, -0.5567981365060244, -0.5158668561297974, -0.47770838446051767, -0.44222950640536407, -0.40932954768410434 ], [ -2.279374978047124, -2.3458747045792334, -2.408976948035663, -2.467907392301348, -2.5218686743860026, -2.5700618333713083, -2.6117131459525633, -2.6461052214164407, -2.6726099907465666, -2.690720023200631, -2.7000739341706703, -2.700472039123537, -2.6918800765574717, -2.674421345620222, -2.6483599810566085, -2.614079330943126, -2.572059199368393, -2.522854532908914, -2.4670767254848043, -2.4053776362519246, -2.338435842845252, -2.2669445219456517, -2.1916004944937644, -2.1130942200461638, -2.0321007414120786, -1.9492716983321225, -1.8652285412810656, -1.7805570180088055, -1.6958029228402165, -1.6114690285733102, -1.528013080181833, -1.4458467182362065, -1.3653352080736663, -1.2867978663926851, -1.2105090912791305, -1.136699910606373, -1.06555996726115, -0.9972398599667371, -0.9318537583347456, -0.8694822122387598, -0.8101750796425856, -0.7539545036312374, -0.700817877962745, -0.6507407501193048, -0.6036796207514028, -0.5595746079190633, -0.5183519532010648, -0.4799263543272394, -0.4442031154100632, -0.4110801111341762 ], [ -2.297546698314314, -2.3646759831598425, -2.428368650743539, -2.4878394635857095, -2.542279445088271, -2.5908777761118107, -2.632849295967837, -2.6674664555353638, -2.694093245359855, -2.712217327001351, -2.7214758913501877, -2.7216712502522, -2.7127740461474508, -2.694914684547605, -2.6683659950399012, -2.6335212042578893, -2.5908709051058096, -2.5409814533054815, -2.4844758842318018, -2.422017469591447, -2.3542955240685606, -2.2820129408270313, -2.2058750391644573, -2.1265795065485675, -2.04480740043451, -1.9612152812338524, -1.8764285661481408, -1.7910361498097414, -1.705586270110859, -1.6205835379740887, -1.536487014173362, -1.4537092057434493, -1.3726158611680246, -1.2935264572824812, -1.2167152838277233, -1.142413040030478, -1.0708088612587416, -1.0020526946018133, -0.936257942578152, -0.8735042959700027, -0.8138406809476666, -0.7572882522101476, -0.7038433722816193, -0.6534805265633197, -0.6061551334633426, -0.5618062182765489, -0.5203589280348724, -0.4817268720542227, -0.4458142792797881, -0.412517968793078 ], [ -2.3110864849920087, -2.378607617263913, -2.4426596859520213, -2.5024509610390404, -2.557165708312856, -2.605986296799555, -2.6481210210265056, -2.6828364909117965, -2.7094920741025983, -2.727572521799788, -2.736714163782865, -2.7367205685623373, -2.7275655539723656, -2.709384280402496, -2.6824555924946214, -2.647179761094877, -2.6040552559610677, -2.553656885070914, -2.4966163515680524, -2.4336053871628476, -2.365321157287646, -2.292473496281461, -2.215773596345131, -2.1359239280850773, -2.053609322274146, -1.9694892374231414, -1.8841912620640475, -1.7983058715162712, -1.7123824065646593, -1.6269261927162992, -1.542396688268827, -1.459206539576269, -1.3777214268830584, -1.2982605956487596, -1.2210979796666437, -1.1464638300247385, -1.0745467676946179, -1.0054961787921308, -0.9394248724191501, -0.8764119231454904, -0.8165056244823501, -0.7597264861952855, -0.7060702165233879, -0.6555106395877939, -0.6080025077560658, -0.5634841778776338, -0.5218801287027182, -0.48310330420164527, -0.4470572738180416, -0.4136382059240371 ], [ -2.3198862962383977, -2.3875555360379, -2.451730088379776, -2.5116163121003057, -2.5663967628252182, -2.6152522715507844, -2.6573897303229885, -2.6920744695392074, -2.718664748599046, -2.736644511383086, -2.7456497747179363, -2.745484491416993, -2.7361237153790703, -2.717704776616718, -2.690509639576181, -2.6549425993074935, -2.6115069238941926, -2.5607827553882867, -2.503407331282072, -2.4400577401134815, -2.371435982631986, -2.2982559615214795, -2.221232054402294, -2.141069041140967, -2.058453281449421, -1.9740451240337755, -1.8884725582042967, -1.8023261032225844, -1.7161548927122103, -1.630463873255054, -1.5457120110917435, -1.4623113918230237, -1.380627101347336, -1.3009777855377382, -1.2236367957754357, -1.1488338343588222, -1.0767570175013965, -1.0075552752935075, -0.9413410093612343, -0.8781929314596221, -0.8181590106578928, -0.7612594631900387, -0.707489727045634, -0.6568233723147121, -0.6092149075087054, -0.5646024509933267, -0.5229102448866227, -0.4840509960584165, -0.4479280351107686, -0.41443728941966085 ], [ -2.323887683721889, -2.391459160870475, -2.4555171631127735, -2.515270715763136, -2.5699057237119933, -2.6186067969020135, -2.660584657972005, -2.695108067651522, -2.7215378914288357, -2.739359589685021, -2.748209605771394, -2.7478915134632342, -2.7383796593127907, -2.7198108448464398, -2.6924670693449686, -2.6567534055681694, -2.6131746112113854, -2.562312832043616, -2.504807525240926, -2.441337890164256, -2.3726076465829546, -2.2993318334898527, -2.2222253047567646, -2.141992684235288, -2.0593196462266974, -1.9748654643891486, -1.889256806183368, -1.8030827460029624, -1.716890945075536, -1.6311849178045639, -1.5464222841078659, -1.4630138992781747, -1.3813237547885484, -1.3016695505550415, -1.22432384700361, -1.1495157112643366, -1.077432775369187, -1.0082236263167994, -0.942000449673675, -0.8788418512187136, -0.818795785676352, -0.7618825279105714, -0.708097629719699, -0.657414814011726, -0.609788767046539, -0.5651577980831821, -0.5234463437848691, -0.48456730187562, -0.44842418470012246, -0.4149130884966912 ], [ -2.323083030268653, -2.3903128265994815, -2.4540171354725073, -2.5134120745870288, -2.567691794623186, -2.616049856698338, -2.6577059617673298, -2.6919370291152833, -2.7181103964029134, -2.7357156426863547, -2.744390726480567, -2.7439384057921585, -2.734330586760332, -2.7157008868306973, -2.6883281393598217, -2.652614729643907, -2.609063342849565, -2.558254563815806, -2.500826569521679, -2.4374572975971565, -2.3688489998897992, -2.2957148964039176, -2.218767621711806, -2.138709218174046, -2.05622251634917, -1.9719638132578403, -1.8865567964507823, -1.800587667468769, -1.7146014042774187, -1.6290990825962908, -1.5445361607552153, -1.4613216258739836, -1.3798178999542952, -1.3003414096434125, -1.2231637295977116, -1.1485132144117292, -1.0765770374154024, -1.007503556867785, -0.941404932264163, -0.8783599166061684, -0.8184167551236323, -0.7615961271657103, -0.7078940755043748, -0.657284875620985, -0.6097238061339278, -0.5651497898956943, -0.5234878830791407, -0.4846515965562521, -0.44854503993048445, -0.4150648836915747 ], [ -2.317515402549131, -2.3841656746361535, -2.4472851438757783, -2.5061011704358336, -2.5598207332589165, -2.6076512010849586, -2.648826139678287, -2.6826352164221454, -2.708456150505829, -2.7257854883325017, -2.7342642000535125, -2.7336942555342523, -2.7240437776434643, -2.7054407619236374, -2.6781576959180717, -2.6425906828223766, -2.59923657297751, -2.5486706266393178, -2.491526086193425, -2.4284761600370293, -2.360218406660483, -2.287461278591085, -2.210912534844108, -2.1312692709328007, -2.0492093865981507, -1.9653843753681635, -1.8804133593048906, -1.794878305423712, -1.7093203554106104, -1.6242371882080677, -1.5400813242449654, -1.4572592746462492, -1.3761314388565453, -1.2970126577285288, -1.2201733338419394, -1.1458410349746626, -1.0742024997238377, -1.0054059666568924, -0.9395637508688957, -0.87675499519965, -0.8170285280797334, -0.7604057660946026, -0.7068836066362589, -0.6564372640202047, -0.6090230107050558, -0.5645807933261839, -0.5230367008093348, -0.48430526863987766, -0.448291609310167, -0.41489336401413257 ], [ -2.307276973998174, -2.373119938134055, -2.4354334414291836, -2.4934598689095404, -2.546423180718228, -2.5935489552401387, -2.6340890906523455, -2.6673502867893553, -2.6927244400389894, -2.70971803834684, -2.71797691160638, -2.717302761570935, -2.7076590857029297, -2.689166205109895, -2.6620872890148415, -2.62680860645399, -2.5838173500208037, -2.5336795969660537, -2.477019920845448, -2.414503291087401, -2.3468193457320146, -2.2746688531633157, -2.198752095816269, -2.1197589261777017, -2.038360301487321, -1.9552011605739064, -1.8708945459198512, -1.786016892590225, -1.701104408094056, -1.6166504616352912, -1.5331038945173372, -1.450868159597967, -1.3703011975182855, -1.2917159599145196, -1.2153814933601863, -1.1415245011751913, -1.0703313030454107, -1.0019501148684076, -0.9364935739692635, -0.8740414383976933, -0.8146433937779035, -0.7583219071850984, -0.7050750745543435, -0.6548794158174946, -0.6076925798909982, -0.5634559294085089, -0.5220969823979134, -0.4835316947271213, -0.4476665729661895, -0.41440061229007497 ], [ -2.292506061976971, -2.3573276455640486, -2.4186277977010913, -2.4756672837989293, -2.5276906917731425, -2.573945658336709, -2.61370633727785, -2.6463002862119827, -2.671137084784971, -2.6877360838841704, -2.6957500264320085, -2.6949812842001535, -2.6853884142390063, -2.6670825231240416, -2.6403148936653373, -2.6054586716981816, -2.5629877113567487, -2.5134551159465905, -2.4574730927513864, -2.395694897113355, -2.328799064448971, -2.2574758194352533, -2.1824154331513017, -2.104298289924523, -2.0237864645796813, -1.9415166591443607, -1.8580943861604209, -1.7740893076085653, -1.6900316463656018, -1.6064095867816996, -1.5236675779282765, -1.4422054508794924, -1.3623782613359734, -1.284496770675375, -1.2088284811896228, -1.1355991440451798, -1.0649946610670846, -0.9971633039639011, -0.9322181775042158, -0.8702398568576033, -0.8112791340869369, -0.7553598146513034, -0.7024815115627223, -0.6526223922157566, -0.60574184050401, -0.5617830043037568, -0.5206752054541817, -0.48233619579404863, -0.44667424850394144, -0.41359007890027644 ], [ -2.2733829228452174, -2.336985896267129, -2.397082255409976, -2.4529540430553327, -2.5038695729311207, -2.5491017761572614, -2.5879503553903582, -2.6197669714018166, -2.6439819439584884, -2.6601301677371816, -2.6678733708821185, -2.667015811626978, -2.657511269424936, -2.6394606707442865, -2.6131014073141845, -2.5787906894568176, -2.536985714202188, -2.4882230777075045, -2.4330991048905464, -2.37225199506384, -2.3063461042779476, -2.236058343599046, -2.162066517837533, -2.085039390679433, -2.0056282809346793, -1.9244600316910254, -1.8421312282916789, -1.7592035640003445, -1.676200263783273, -1.5936034803810708, -1.5118525769323776, -1.4313432099098455, -1.3524271265001642, -1.2754125920092965, -1.200565364994985, -1.1281101401669522, -1.0582323814714925, -0.9910804703143251, -0.9267680968812875, -0.8653768263050904, -0.806958776184009, -0.7515393476889292, -0.6991199590342818, -0.6496807371543019, -0.603183130696626, -0.5595724146054142, -0.5187800633570212, -0.48072597613931656, -0.4453205428127407, -0.4124665442993172 ], [ -2.2501245411006563, -2.312330983282422, -2.3710525586897164, -2.425595014572494, -2.4752529255054725, -2.519327116524183, -2.557145459056465, -2.5880863078181533, -2.611603215628543, -2.6272489076765337, -2.6346960142166465, -2.633752015696674, -2.6243664541515157, -2.606629675067733, -2.580763823305621, -2.5471079943077704, -2.5060999583324284, -2.4582567090221943, -2.404155503809378, -2.3444163879284448, -2.279686640740193, -2.210627223821289, -2.137901123446988, -2.062163411034282, -1.9840528411028422, -1.90418482931128, -1.8231456806488595, -1.741487959544229, -1.6597269069827547, -1.5783378162594304, -1.4977542815644322, -1.4183672346527265, -1.3405246858353383, -1.2645320869577914, -1.1906532358683313, -1.1191116439550803, -1.0500922905864403, -0.9837436908435193, -0.9201802060142442, -0.8594845301533556, -0.801710290727346, -0.7468847069437758, -0.69501125565979, -0.6460723015309411, -0.6000316550136944, -0.5568370286951416, -0.5164223689540839, -0.4787100459801361, -0.44361289057402065, -0.4110360708634264 ], [ -2.222978715830765, -2.2836317275454223, -2.3408286887256615, -2.39390101125662, -2.442171509256331, -2.4849708703318214, -2.521657077675607, -2.5516370920660405, -2.574389572385745, -2.5894868726662867, -2.5966141591670375, -2.5955834485074254, -2.5863408406661286, -2.5689661940989708, -2.543665702005595, -2.510758869923966, -2.470661939417715, -2.4238697808703344, -2.3709378598338535, -2.312465321106714, -2.2490797302553682, -2.1814236528531685, -2.110143041491881, -2.0358773034012585, -1.959250893804879, -1.8808662868865502, -1.8012981946754554, -1.7210889222417807, -1.640744760759812, -1.560733327959391, -1.4814817697582785, -1.4033757391981279, -1.3267590704542522, -1.2519340672920067, -1.1791623271090377, -1.1086660236643833, -1.0406295738021978, -0.9752016160559589, -0.9124972321512906, -0.8526003462751474, -0.7955662416306462, -0.7414241392185981, -0.6901797898439197, -0.6418180368201789, -0.5963053134903404, -0.5535920462480384, -0.513614940016808, -0.4762991289588665, -0.44156018042612266, -0.40930594477252513 ], [ -2.192217777386126, -2.2511824255045814, -2.3067269921743856, -2.358210060756001, -2.4049841303282373, -2.4464111187538427, -2.481880417776461, -2.5108288496631626, -2.5327614336660025, -2.5472714314600413, -2.5540578265201606, -2.552938360286921, -2.543856622188533, -2.5268824657915494, -2.502206011656114, -2.4701263917561063, -2.4310369235196685, -2.3854084826097353, -2.333772569309395, -2.27670512204409, -2.214811692276013, -2.1487142525379235, -2.079039687359872, -2.006409896998628, -1.9314333938258976, -1.8546982608154599, -1.7767663490503833, -1.6981686035862555, -1.6194014181631702, -1.5409239272497837, -1.4631561489915272, -1.3864778958122228, -1.3112283716252868, -1.2377063764656602, -1.1661710411782003, -1.0968430167544967, -1.0299060451245607, -0.9655088408228292, -0.9037672161150478, -0.84476638601462, -0.7885633941881646, -0.7351896060091851, -0.6846532208413583, -0.6369417618280815, -0.5920245078127178, -0.5498548382951136, -0.5103724683497064, -0.4735055560359198, -0.43917266991331494, -0.4072846087695803 ], [ -2.1581322571174173, -2.215295796396565, -2.2690823643519846, -2.318878791836003, -2.36406821114803, -2.404044585742386, -2.4382294234656063, -2.4660900641980517, -2.487158569209691, -2.501049887634336, -2.5074777308565257, -2.506266566351148, -2.497358440559963, -2.4808139540378193, -2.4568075077362965, -2.425617690627246, -2.3876141746821475, -2.34324262908976, -2.293009007889231, -2.2374642351297624, -2.177189945520951, -2.112785626806297, -2.044857288414135, -1.9740076461709055, -1.900827743982564, -1.8258899064854535, -1.7497419123041484, -1.6729022827670543, -1.595856588483888, -1.5190546828762996, -1.4429087767232966, -1.3677922712665327, -1.294039269953997, -1.2219446909638823, -1.151764904575301, -1.0837188214582465, -1.0179893602080932, -0.9547252251032894, -0.8940429282511335, -0.8360289941035565, -0.7807422888012103, -0.7282164218977829, -0.6784621736093848, -0.6314699066590423, -0.5872119278492562, -0.5456447705003433, -0.5067113746643495, -0.47034314742244443, -0.4364618904932398, -0.4049815867593547 ], [ -2.121024790060178, -2.176296256577353, -2.228240869429684, -2.2762743825499143, -2.3198110588444, -2.358277232097495, -2.391126718629747, -2.417857512316721, -2.4380288995884625, -2.451277852245366, -2.457333369183278, -2.456027430972168, -2.4473014702538616, -2.4312077453711405, -2.4079056397186447, -2.377653530420541, -2.3407973142839458, -2.2977568590239934, -2.2490115777655784, -2.1950860912625596, -2.1365366494391425, -2.0739387116792036, -2.0078758745672367, -1.938930194493263, -1.8676738698715025, -1.794662206481618, -1.7204277734579259, -1.6454756546613016, -1.5702797029422892, -1.4952797090494074, -1.4208794008924848, -1.3474451920650385, -1.275305601058602, -1.2047512647290217, -1.1360354715578616, -1.069375142302939, -1.0049521879240357, -0.942915177352047, -0.8833812508582269, -0.82643821855226, -0.7721467879083863, -0.7205428691419711, -0.6716399126273032, -0.6254312382122647, -0.5818923220738723, -0.5409830124972059, -0.5026496514910319, -0.4668270843454496, -0.4334405439945628, -0.4024074013057668 ], [ -2.0812044669908882, -2.1345137646905394, -2.1845530705835627, -2.2307673739065654, -2.272602168013892, -2.3095160603213998, -2.340994934960809, -2.366567145566912, -2.385818974851236, -2.3984093788600878, -2.404082893642914, -2.4026795847562967, -2.394141113031252, -2.3785123724685624, -2.3559386606477726, -2.326658849808324, -2.2909954145346303, -2.249342363855687, -2.2021521172402028, -2.1499222090704313, -2.093182481046757, -2.032483193105091, -1.9683842915173477, -1.9014459328037487, -1.8322202713096394, -1.7612444659360353, -1.689034835158828, -1.616082078665007, -1.5428474812820794, -1.4697600158423154, -1.397214263799448, -1.3255690747405233, -1.2551468880818208, -1.186233642211786, -1.1190791982746338, -1.0538982078274064, -0.990871355900158, -0.9301469136703046, -0.871842538126724, -0.8160472598037766, -0.7628236039161247, -0.712209794972692, -0.6642220000946797, -0.618856571674907, -0.5760922555394892, -0.5358923362542121, -0.498206696513106, -0.4629737725369123, -0.43012239200257585, -0.39957348516057656 ], [ -2.0389817817657176, -2.0902783918423564, -2.138368230169368, -2.1827255120704816, -2.2228267206402568, -2.258162290029518, -2.2882495811325434, -2.3126466712480287, -2.3309662853357604, -2.3428890261574553, -2.348174956938384, -2.346672600091188, -2.338324572395289, -2.323169379557765, -2.3013392932160786, -2.2730546456429668, -2.2386152094608907, -2.198389518530059, -2.1528030181184956, -2.1023258383909558, -2.0474608188449124, -1.9887322253190636, -1.9266754327985949, -1.8618277146957494, -1.79472018584118, -1.7258708866601584, -1.6557789612811287, -1.584919864201816, -1.5137415219641412, -1.4426613735045004, -1.3720642126798444, -1.302300757429721, -1.233686871425239, -1.166503365627709, -1.1009963088998684, -1.0373777787432368, -0.9758269854711691, -0.9164917057598297, -0.8594899646218243, -0.8049119084578875, -0.7528218159537139, -0.7032601981536395, -0.6562459439675639, -0.6117784725327122, -0.5698398591190799, -0.5303969064993272, -0.49340313876936825, -0.4588006993969218, -0.4265221397048766, -0.3964920880058387 ], [ -1.9946642533167276, -2.0439156896954698, -2.0900294418692877, -2.132508665146877, -2.1708603084906355, -2.2046059046118054, -2.2332934273638774, -2.2565097815734796, -2.273893335013457, -2.2851457703995948, -2.2900424597047437, -2.288440577759473, -2.2802843003479802, -2.265606672198482, -2.2445280478409395, -2.217251341656013, -2.184054604028618, -2.145281617470128, -2.1013312624745035, -2.052646353660057, -1.9997025287760575, -1.942997626655681, -1.8830418471380304, -1.8203488652567712, -1.755427980508272, -1.6887773185483035, -1.6208780619664087, -1.5521896625801288, -1.4831459743907396, -1.414152239711006, -1.3455828581521956, -1.2777798673892886, -1.2110520649410397, -1.1456747011246953, -1.0818896746806017, -1.0199061642607892, -0.9599016310632801, -0.9020231304143156, -0.8463888730935146, -0.7930899806780491, -0.7421923831339952, -0.6937388112519249, -0.6477508412237809, -0.6042309535786734, -0.5631645737121433, -0.5245220662312489, -0.488260660179324, -0.4543262867983089, -0.4226553157523263, -0.3931761796173059 ], [ -1.9485527460821437, -1.99574286456816, -2.039869682327579, -2.0804647765650515, -2.1170648100704277, -2.149221468125538, -2.176512270240521, -2.1985518639732375, -2.215003284008522, -2.2255885581428205, -2.230097987460116, -2.228397445444392, -2.2204331462072915, -2.2062335236029216, -2.1859081156784423, -2.159643618150087, -2.1276975056036442, -2.0903897796045494, -2.04809347105397, -2.00122450652367, -1.950231468652399, -1.8955856686888155, -1.8377718311444546, -1.7772795840638052, -1.7145958623752586, -1.6501982678912595, -1.5845493853109727, -1.5180920248218746, -1.451245344235316, -1.3844017933508403, -1.3179248176961211, -1.2521472560943778, -1.1873703655248478, -1.123863406810596, -1.061863725448979, -1.0015772632393447, -0.9431794382032539, -0.8868163326265684, -0.8326061318805026, -0.7806407599904954, -0.7309876616869604, -0.6836916848297754, -0.6387770215674611, -0.5962491712670741, -0.556096893020462, -0.5182941202811473, -0.48280181480641726, -0.44956974147858975, -0.4185381496813807, -0.3896393506574247 ], [ -1.9009384708961454, -1.9460657196496913, -1.9882087203231629, -2.0269267651941174, -2.061785301261109, -2.0923650587293725, -2.1182718913236833, -2.1391469756383588, -2.1546769179811167, -2.164603239261235, -2.1687306699764624, -2.166933706096891, -2.1591609637833353, -2.145437024529275, -2.1258616641139683, -2.100606576347132, -2.0699098983236164, -2.034068986266761, -1.9934319635025364, -1.9483885657293283, -1.8993607583496406, -1.8467935175123271, -1.7911460714309109, -1.7328838072153085, -1.6724709701468747, -1.610364220609772, -1.5470070684133481, -1.4828251725552402, -1.4182224734424245, -1.3535781112279588, -1.289244075803885, -1.225543529333398, -1.1627697397925287, -1.1011855630590448, -1.0410234111748646, -0.9824856452681351, -0.9257453331187439, -0.8709473134220856, -0.818209511408991, -0.7676244535797501, -0.7192609328573729, -0.6731657793943888, -0.629365696494883, -0.5878691255404893, -0.548668108331829, -0.5117401197678202, -0.47704984818773344, -0.44455090490589977, -0.4141874484067267, -0.3858957122843434 ], [ -1.8521006203026456, -1.8951762988763543, -1.9353507936443481, -1.9722102565183612, -2.0053478564787257, -2.034372147454139, -2.0589160110812323, -2.078645858864713, -2.09327069982327, -2.1025506201169986, -2.106304194390292, -2.104414367533715, -2.096832417942205, -2.0835797372828564, -2.064747323690714, -2.0404930615139634, -2.0110370232554864, -1.976655153725015, -1.9376717681175393, -1.8944513128059222, -1.8473898088485814, -1.7969063384559014, -1.7434348598813905, -1.6874165596876436, -1.6292928819881178, -1.5694993166038107, -1.508459983210694, -1.4465830154726496, -1.3842567258243197, -1.3218465157389638, -1.2596924859562928, -1.1981076946347118, -1.1373770075405365, -1.0777564823772106, -1.019473228660026, -0.9627256848261682, -0.9076842553403984, -0.8544922522922233, -0.8032670883025346, -0.7541016704011891, -0.7070659478360233, -0.6622085704524916, -0.6195586182579693, -0.5791273669572277, -0.5409100585197761, -0.5048876501142749, -0.4710285189294221, -0.4392901044123063, -0.40962047322744666, -0.381959795720616 ], [ -1.802304575924844, -1.8433511514748124, -1.8815829522784597, -1.9166120218751572, -1.9480580952371467, -1.975556255370408, -1.998765050511369, -2.0173747908221626, -2.0311156812783038, -2.039765401993955, -2.0431557290725313, -2.0411778075606866, -2.033785748471896, -2.020998322404836, -2.002898652844397, -1.979631955341539, -1.9514015035507508, -1.9184631106199463, -1.8811184823541356, -1.8397078234892335, -1.7946020650971772, -1.7461950397436934, -1.694895873500542, -1.6411218011192514, -1.585291550651934, -1.527819391374654, -1.4691098960559463, -1.4095534354584036, -1.3495223983754292, -1.2893681129234904, -1.229418432643659, -1.169975942827568, -1.1113167372736403, -1.053689712593121, -0.9973163256556058, -0.9423907594118973, -0.8890804429086572, -0.8375268726508235, -0.7878466844571934, -0.7401329275014958, -0.6944564952511765, -0.6508676714245367, -0.6093977527944934, -0.5700607145792083, -0.5328548881812367, -0.49776462507410346, -0.4647619246004491, -0.43380800726386815, -0.4048548187009682, -0.37784645286281693 ], [ -1.7518006182369994, -1.7908501318019798, -1.8271739660243942, -1.860409007032363, -1.890200338785181, -1.9162082379507934, -1.9381155345537386, -1.9556350886437617, -1.9685170839416728, -1.9765558048544751, -1.9795955513568921, -1.977535363803376, -1.970332280343615, -1.9580029316870824, -1.9406233838149793, -1.9183272558867703, -1.891302252381346, -1.8597853408059017, -1.8240568688588288, -1.7844339437893513, -1.7412633940947846, -1.6949146063631777, -1.6457724867956203, -1.5942307463512682, -1.5406856575116996, -1.4855303840522467, -1.4291499454311059, -1.3719168452395853, -1.3141873682386165, -1.2562985318861482, -1.1985656647747471, -1.1412805749312231, -1.0847102645233524, -1.0290961434187338, -0.974653691684711, -0.9215725201035679, -0.8700167778206671, -0.820125857146548, -0.7720153471506824, -0.725778189900357, -0.6814859959125934, -0.6391904785050622, -0.598924970159922, -0.5607059876575358, -0.5245348165019939, -0.4903990889573029, -0.4582743337589641, -0.4281254791878861, -0.3999082946285546, -0.3735707589346551 ], [ -1.7008230681708536, -1.7379156513951663, -1.7723737007887297, -1.8038578419637301, -1.8320372568784036, -1.8565960657609188, -1.87723999651964, -1.8937031202263306, -1.9057543922249107, -1.9132037122149035, -1.9159072092835103, -1.9137714742537162, -1.9067565043040682, -1.8948771921857293, -1.8782032786489014, -1.8568577821550578, -1.8310140127795649, -1.8008913560762465, -1.7667500691799247, -1.7288853616052209, -1.687621037730091, -1.6433029611518284, -1.5962925693106218, -1.5469606267006928, -1.495681362467255, -1.4428270975261348, -1.388763430196614, -1.3338450189315292, -1.2784119762473867, -1.2227868689443073, -1.1672723053931437, -1.1121490802093397, -1.0576748392379818, -1.004083222776968, -0.9515834418324657, -0.9003602405326233, -0.8505741973225971, -0.8023623180042613, -0.755838874900949, -0.7110964482868896, -0.6682071286083993, -0.627223840835273, -0.588181755417746, -0.5510997536911235, -0.5159819190737491, -0.48281902895865936, -0.4515900257235066, -0.422263448707644, -0.3947988122695951, -0.36914791809377867 ], [ -1.6495897931697998, -1.6847723063257618, -1.717412877410235, -1.747194736955976, -1.7738099018401958, -1.7969649914841663, -1.8163872672054424, -1.8318306987527846, -1.8430818311592059, -1.8499652052602833, -1.8523480810806554, -1.8501442283943093, -1.8433165847419266, -1.8318786367951005, -1.8158944516747684, -1.7954773632872403, -1.7707873959650409, -1.7420275749089342, -1.7094393232898046, -1.6732971756930146, -1.6339030466243378, -1.591580283705003, -1.5466677124556392, -1.4995138483331818, -1.450471416712397, -1.3998922865934547, -1.3481228915672672, -1.2955001834407511, -1.2423481404685526, -1.1889748332844619, -1.1356700369427624, -1.082703366373761, -1.030322904413274, -0.9787542858196371, -0.9282001968690609, -0.8788402478389233, -0.830831174650029, -0.7843073259127175, -0.7393813924256751, -0.6961453376640607, -0.6546714898396917, -0.6150137586090136, -0.577208942341978, -0.5412780949486469, -0.5072279244995888, -0.47505219918542485, -0.4447331394618135, -0.41624277845114044, -0.3895442757624945, -0.3645931727999472 ], [ -1.5983020158215884, -1.631626811037631, -1.6625031377192416, -1.6906356839128076, -1.7157380436527994, -1.7375380125960287, -1.755783054168363, -1.7702457629811328, -1.780729127833017, -1.787071381742184, -1.7891502245930178, -1.7868862177636962, -1.7802451806053694, -1.7692394647821694, -1.753928040743044, -1.7344153953523058, -1.7108493040976867, -1.6834175984884268, -1.6523440937246758, -1.617883870159642, -1.580318113736998, -1.5399487170051966, -1.4970928266112797, -1.452077499220458, -1.4052345994210087, -1.35689604360722, -1.3073894655010438, -1.2570343534103614, -1.206138687310145, -1.1549960855790717, -1.103883456567496, -1.0530591387425454, -1.0027615045046132, -0.9532079964452455, -0.9045945604130889, -0.8570954369254978, -0.8108632709235238, -0.7660294993884087, -0.7227049767310192, -0.6809807989773422, -0.6409292894719452, -0.6026051109896771, -0.5660464716782974, -0.5312763950520714, -0.4983040272289958, -0.4671259576658102, -0.43772753272194365, -0.41008414440730623, -0.3841624795830003, -0.3599217176423479 ], [ -1.5471443698142706, -1.5786681785382497, -1.607837353365163, -1.6343768946754051, -1.658020734808622, -1.6785165558782245, -1.6956307352133582, -1.7091532654048867, -1.718902476606438, -1.7247293776369137, -1.7265214321590272, -1.7242055986980593, -1.7177504892169873, -1.7071675394368448, -1.6925111323327808, -1.6738776699143005, -1.6514036422307088, -1.6252627911932251, -1.595662505812566, -1.5628396119335022, -1.5270557325185108, -1.4885923947835664, -1.4477460501497323, -1.4048231549117554, -1.3601354367600003, -1.3139954475454134, -1.2667124781092123, -1.2185888881146976, -1.169916883514707, -1.1209757569626433, -1.072029592169443, -1.0233254217422927, -0.9750918191135969, -0.927537898441796, -0.8808526915049805, -0.8352048673138864, -0.7907427581810503, -0.7475946550792478, -0.7058693351198926, -0.6656567847245243, -0.6270290834157675, -0.5900414149972713, -0.5547331751192732, -0.5211291467367076, -0.4892407176714886, -0.4590671173052505, -0.4305966522801339, -0.40380792390735487, -0.37867101271984716, -0.35514861821059407 ], [ -1.4962851548472653, -1.526068095298185, -1.5535901230217304, -1.57859541977323, -1.6008370466489381, -1.6200813242182288, -1.636112305505079, -1.6487362067287012, -1.6577856454456286, -1.6631235275105856, -1.6646464250856248, -1.6622872991849773, -1.6560174423930796, -1.6458475496236031, -1.6318278649232265, -1.6140473970059088, -1.592632241334938, -1.5677430879649326, -1.5395720284161116, -1.5083387991087251, -1.4742866122686196, -1.4376777280401907, -1.3987889152229764, -1.3579069346888135, -1.3153241614880984, -1.2713344411556071, -1.2262292546571647, -1.1802942461900008, -1.1338061495909815, -1.0870301329314591, -1.0402175671757825, -0.9936042135175398, -0.9474088150141933, -0.9018320711784269, -0.8570559689958083, -0.8132434401696295, -0.7705383120185956, -0.7290655181665231, -0.688931534791769, -0.650225008593196, -0.6130175436469196, -0.5773646158521459, -0.5433065855893806, -0.5108697814407193, -0.48006763026014254, -0.4509018114511101, -0.4233634159352073, -0.39743409291562104, -0.3730871700977094, -0.3502887354795783 ], [ -1.4458767487901065, -1.4739814470714818, -1.499918412576625, -1.5234499010654472, -1.5443469298993502, -1.562393257938025, -1.5773894302229716, -1.5891567682288124, -1.5975411744124166, -1.602416613767884, -1.603688136620851, -1.6012943170050586, -1.5952089999252732, -1.5854422779284658, -1.5720406509496776, -1.5550863607427035, -1.5346959291525473, -1.5110179647355553, -1.4842303318819488, -1.45453679854857, -1.422163291915338, -1.3873538957492157, -1.3503667199048173, -1.3114697627338228, -1.2709368730284785, -1.2290439013011871, -1.1860651123075554, -1.1422699130282932, -1.0979199337497247, -1.0532664849910023, -1.0085484001084488, -0.9639902625400096, -0.9198010077716905, -0.8761728830644007, -0.8332807425858668, -0.7912816516459219, -0.7503147710423841, -0.7105014909066794, -0.6719457827324629, -0.6347347383311479, -0.598939265155763, -0.5646149086513539, -0.531802773921564, -0.5005305209487791, -0.4708134097825547, -0.44265537443739666, -0.4160501066453246, -0.3909821330277561, -0.36742787163114565, -0.34535665606650356 ], [ -1.3960561415409318, -1.422546958876782, -1.4469623007369457, -1.4690814202641154, -1.488692161247563, -1.5055945725417799, -1.51960456475823, -1.5305575040333768, -1.5383116281779152, -1.5427511661699305, -1.5437890439282145, -1.5413690683527244, -1.5354674978962675, -1.5260939308402524, -1.5132914706014857, -1.497136158730105, -1.477735698256252, -1.4552275200938847, -1.4297762709662072, -1.401570821016394, -1.3708209019219755, -1.3377534917742724, -1.3026090617744601, -1.2656377930210976, -1.2270958607048676, -1.1872418693357956, -1.1463335075549286, -1.1046244757509052, -1.0623617249707409, -1.0197830320664836, -0.9771149240039145, -0.9345709539301856, -0.8923503229747831, -0.8506368347668524, -0.8095981641679052, -0.7693854175883321, -0.7301329593218935, -0.6919584764384059, -0.6549632537762038, -0.6192326303377429, -0.5848366087924128, -0.5518305907164274, -0.5202562115496645, -0.4901422509280786, -0.4615055959738865, -0.4343522372141946, -0.40867827898520237, -0.3844709483992106, -0.36170958915490425, -0.3403666286110447 ], [ -1.346945560568814, -1.3718879185261215, -1.3948457991710987, -1.415614412478415, -1.4339973453347303, -1.4498098426065733, -1.4628821125416742, -1.4730625636804624, -1.480220872984224, -1.484250781820721, -1.485072518679845, -1.482634755576374, -1.476916019106556, -1.4679254965503683, -1.4557032011363187, -1.440319486971545, -1.4218739311996615, -1.4004936266022543, -1.3763309502082184, -1.3495608910397832, -1.3203780320078946, -1.2889932869063547, -1.255630493759913, -1.2205229612199004, -1.1839100563179707, -1.1460339108371094, -1.1071363109537926, -1.0674558216240855, -1.0272251842099962, -0.9866690136420798, -0.9460018103651673, -0.905426292622923, -0.865132046384689, -0.8252944833906813, -0.7860740923181534, -0.7476159638432502, -0.7100495672678058, -0.6734887542674544, -0.6380319640707666, -0.6037626038773565, -0.5707495784529011, -0.539047943494608, -0.5086996584452703, -0.47973441585645094, -0.4521705260801536, -0.4260158379273069, -0.4012686779044752, -0.3779187926660412, -0.3559482813472661, -0.3353325064287638 ], [ -1.2986531629942668, -1.322112958384372, -1.343677721962112, -1.3631576198627988, -1.3803709477000614, -1.395147107880708, -1.407329597074281, -1.416778921925874, -1.423375355239113, -1.4270214427598673, -1.4276441730444906, -1.4251967301064177, -1.4196597606220127, -1.4110421040046301, -1.399380953723612, -1.3847414405417635, -1.3672156512925437, -1.3469211187523182, -1.3239988375415772, -1.2986108765780988, -1.2709376696032324, -1.2411750713991268, -1.209531268659235, -1.1762236315955343, -1.1414755860464667, -1.1055135769965712, -1.0685641839472015, -1.0308514373212154, -0.9925943737412243, -0.9540048571285686, -0.9152856825099043, -0.8766289704253714, -0.8382148520323269, -0.8002104384233029, -0.7627690622995196, -0.726029775894383, -0.6901170858311216, -0.6551409033240259, -0.621196686683809, -0.5883657523591059, -0.5567157306356032, -0.5263011425230688, -0.4971640751985906, -0.469334934555504, -0.442833254853479, -0.4176685471040589, -0.39384116959281235, -0.37134320577605195, -0.3501593366465283, -0.3302676964956046 ], [ -1.251273773293574, -1.273316874558819, -1.293552583891675, -1.3118050653678333, -1.3279063392577255, -1.3416989827819459, -1.3530388299286054, -1.3617975980385362, -1.3678653642802858, -1.371152813771484, -1.3715931834833588, -1.3691438324871361, -1.3637873795526818, -1.355532363218595, -1.3444133964847147, -1.3304908071828234, -1.3138497745930846, -1.2945989916592016, -1.272868898955266, -1.2488095503456051, -1.2225881803492336, -1.1943865492486019, -1.1643981440098092, -1.132825311464173, -1.0998763955188815, -1.0657629431293132, -1.0306970351164284, -0.9948887883577382, -0.9585440660290049, -0.9218624229219365, -0.8850353037798021, -0.8482445043283336, -0.811660897384957, -0.775443420172117, -0.7397383137499476, -0.7046786012831698, -0.670383788604267, -0.6369597681506713, -0.6044989057480847, -0.5730802887949715, -0.5427701140828463, -0.5136221936751242, -0.4856785578797811, -0.45897013530762387, -0.43351749123569006, -0.4093316069243931, -0.38641468410676505, -0.3647609605222455, -0.34435752405720454, -0.32518511473792255 ], [ -1.204889649350977, -1.2255814665426747, -1.244551511036706, -1.2616370306487397, -1.276682836998443, -1.2895437546354431, -1.3000870606603718, -1.3081948510209036, -1.3137662660937788, -1.3167195073465496, -1.3169935792139615, -1.3145496960396887, -1.3093723029892965, -1.3014696719203454, -1.2908740476973233, -1.277641336515933, -1.261850344436272, -1.2436015904381, -1.223015732879924, -1.200231660407077, -1.175404307501294, -1.1487022606744413, -1.1203052237557913, -1.0904014100359625, -1.0591849256393235, -1.0268532029492952, -0.9936045358089601, -0.9596357601491717, -0.925140115190461, -0.890305311866682, -0.8553118269773388, -0.8203314340429048, -0.7855259750789935, -0.7510463716132765, -0.7170318682779668, -0.6836094982136955, -0.6508937562775199, -0.6189864636027018, -0.5879768053388754, -0.5579415223318651, -0.528945237004915, -0.5010408936963797, -0.47427029411849286, -0.4486647093529068, -0.42424555082243387, -0.40102508391119507, -0.3790071692876098, -0.3581880184637023, -0.3385569516533158, -0.32009714752971963 ], [ -1.1595712626914307, -1.1789763835595644, -1.196743150458802, -1.2127210255271474, -1.2267667289651725, -1.238746459347278, -1.248538097921923, -1.2560333405480637, -1.261139698150349, -1.2637823061665112, -1.2639054857189762, -1.2614740043261556, -1.256473991829776, -1.2489134775854072, -1.2388225273477271, -1.2262529719935458, -1.2112777344422923, -1.1939897749794273, -1.174500687825581, -1.1529389925060003, -1.1294481718314595, -1.1041845138024424, -1.0773148174207776, -1.0490140223832696, -1.0194628202464324, -0.988845300317551, -0.9573466777250674, -0.9251511443379585, -0.8924398758948378, -0.8593892212631203, -0.8261690924981894, -0.7929415675561888, -0.7598597113031116, -0.727066614964295, -0.6946946494276192, -0.6628649238628801, -0.6316869379325836, -0.6012584134057495, -0.5716652891934617, -0.5429818626391623, -0.515271059252306, -0.488584812900027, -0.4629645387007817, -0.43844168142882256, -0.41503832307518196, -0.39276783426015527, -0.37163555539836324, -0.35163949483048995, -0.3327710325105804, -0.315015619235526 ], [ -1.1153780813679428, -1.1335599665619802, -1.1501845685075844, -1.165112739150476, -1.178212274291181, -1.1893599259294048, -1.1984433937685854, -1.2053632461071806, -1.2100347182170879, -1.2123893362002598, -1.21237631646278, -1.2099636954643258, -1.205139151237461, -1.1979104870968658, -1.1883057585635215, -1.1763730362549802, -1.1621798096702491, -1.145812048715095, -1.1273729507816064, -1.1069814106167963, -1.0847702576329172, -1.0608843104494556, -1.0354783012186095, -1.0087147227538038, -0.9807616498751007, -0.9517905830332165, -0.921974357557922, -0.8914851561991152, -0.8604926563757359, -0.8291623370650707, -0.7976539638432394, -0.7661202644582574, -0.7347058016495724, -0.7035460448374429, -0.6727666378611514, -0.6424828561745315, -0.6127992438118488, -0.5838094179924567, -0.555596027400747, -0.5282308489088978, -0.5017750067478937, -0.47627929781758116, -0.4517846068985436, -0.42832239592696264, -0.4059152521607856, -0.38457748094556554, -0.36431572983019933, -0.34512963193940327, -0.3270124577379814, -0.30995176558515736 ], [ -1.0723593462139613, -1.0893800771035442, -1.1049221295316238, -1.1188569652542277, -1.131062671323738, -1.1414257834952926, -1.1498430853230972, -1.1562233389721572, -1.1604889021501301, -1.1625771856710507, -1.1624419081848032, -1.160054108620746, -1.1554028828499434, -1.148495818769055, -1.1393591131145109, -1.1280373633673904, -1.1145930385638765, -1.0991056430995294, -1.0816705971415728, -1.0623978655414297, -1.0414103737797828, -1.0188422542262157, -0.9948369687491887, -0.9695453545072431, -0.943123638744191, -0.9157314658489265, -0.8875299761273977, -0.858679971001124, -0.8293401940172325, -0.7996657514304464, -0.7698066904576342, -0.7399067478234946, -0.7101022760765119, -0.6805213504746961, -0.6512830550977902, -0.6224969432767282, -0.5942626644559412, -0.5666697472092803, -0.5397975262904, -0.5137152002750658, -0.48848200550150445, -0.46414749158373647, -0.4407518837104083, -0.418326517193206, -0.39689433024353393, -0.3764704016816489, -0.3570625211727092, -0.3386717805943895, -0.3212931762309226, -0.3049162126234568 ], [ -1.030554833057205, -1.0464749061981453, -1.060992348673734, -1.0739884957891244, -1.0853509886799335, -1.094975426131601, -1.1027669897148378, -1.1086420033744897, -1.1125293873879265, -1.1143719668697174, -1.1141275968859552, -1.1117700698082564, -1.1072897757334221, -1.1006940934500338, -1.092007497268673, -1.0812713736696542, -1.0685435507156458, -1.0538975520465, -1.037421595553402, -1.019217364098854, -0.9993985815760417, -0.978089431958134, -0.9554228616672548, -0.9315388066018181, -0.9065823846054257, -0.8807020922308855, -0.8540480415865529, -0.8267702691207047, -0.7990171436730911, -0.770933896261267, -0.7426612891014452, -0.7143344364846058, -0.6860817854932808, -0.6580242602689264, -0.6302745697048944, -0.6029366750943594, -0.5761054114288318, -0.5498662537227803, -0.5242952179177254, -0.49945888456797216, -0.4754145325938992, -0.4522103698649027, -0.42988584719828205, -0.4084720424847732, -0.3879921020298751, -0.3684617267866188, -0.3498896919062844, -0.3322783889083831, -0.3156243807320269, -0.2999189609449122 ], [ -0.9899955950788338, -1.0048737578581688, -1.0184227139828848, -1.0305329786990725, -1.0411010555658275, -1.0500309324961472, -1.0572355496195511, -1.0626382046114395, -1.0661738602281714, -1.0677903191526505, -1.0674492330034457, -1.0651269155295426, -1.0608149345511375, -1.0545204629715206, -1.0462663759425928, -1.0360910887036732, -1.0240481373646126, -1.0102055125747524, -0.9946447632203637, -0.9774598936761131, -0.958756083413507, -0.9386482617425337, -0.9172595730233417, -0.8947197688219585, -0.8711635632681782, -0.8467289864460303, -0.8215557681971207, -0.7957837814619674, -0.7695515704528868, -0.7429949847627113, -0.7162459361700433, -0.6894312905774456, -0.6626719033583623, -0.6360818025038586, -0.6097675204319444, -0.5838275722050073, -0.5583520752241866, -0.5334225032423692, -0.5091115657555567, -0.4854832024750311, -0.4625926816242716, -0.44048679020937676, -0.41920410414260134, -0.39877532611405275, -0.37922367936595514, -0.36056534598539614, -0.34280993895615586, -0.325960997960278, -0.31001649976083545, -0.29496937489770225 ], [ -0.9507046808330654, -0.9645978033169134, -0.9772324743597544, -0.9885077368830846, -0.9983283088977438, -1.0066059381599848, -1.0132607278556696, -1.0182224029339508, -1.0214314860534215, -1.022840352538104, -1.0224141353522078, -1.0201314539175663, -1.0159849445670224, -1.0099815754291828, -1.002142734378737, -0.992504085103601, -0.9811151930329559, -0.9680389295120501, -0.9533506688791638, -0.9371372987021753, -0.919496068124417, -0.900533302873955, -0.8803630179064145, -0.8591054598535905, -0.8368856114840314, -0.8138316893513994, -0.7900736638610429, -0.7657418283002648, -0.7409654401429366, -0.7158714543403273, -0.6905833645244082, -0.6652201642316062, -0.6398954365365397, -0.6147165769721243, -0.5897841513846043, -0.5651913874852454, -0.5410237963495887, -0.5173589179964944, -0.49426618345300977, -0.4718068843678487, -0.4500342402542419, -0.4289935527959132, -0.40872243630565364, -0.38925111335006224, -0.37060276470951026, -0.3527939231936965, -0.33583490134397165, -0.3197302436900349, -0.30447919495839004, -0.29007617642459893 ], [ -0.9126978245560621, -0.9256608030291658, -0.9374333909088537, -0.9479225463930905, -0.957040595742552, -0.96470645964977, -0.9708468503965934, -0.9753974129300139, -0.978303782522354, -0.9795225321564682, -0.9790219842565232, -0.9767828638844291, -0.9727987739982729, -0.9670764777163335, -0.9596359775846028, -0.9505103873927487, -0.9397455978717157, -0.9273997433653919, -0.9135424820311612, -0.8982541070413179, -0.881624510423119, -0.8637520244326471, -0.8447421676141117, -0.8247063239172272, -0.803760383459271, -0.7820233728003798, -0.759616101067556, -0.7366598460561244, -0.7132751017132928, -0.6895804053261159, -0.6656912594451561, -0.6417191602159886, -0.6177707404788777, -0.5939470328345817, -0.5703428549344627, -0.5470463165954058, -0.5241384459992704, -0.5016929302355595, -0.47977596378996523, -0.4584461972665834, -0.43775477764327486, -0.41774547067774237, -0.39845485567907035, -0.3799125827079599, -0.36214168233586186, -0.3451589183476882, -0.3289751741818012, -0.31359586443471477, -0.29902136338626817, -0.2852474431972498 ], [ -0.8759841063212758, -0.8880697944447158, -0.8990304501365677, -0.9087803727476794, -0.9172389303832243, -0.9243316698983375, -0.9299913978748823, -0.934159208807151, -0.936785436410719, -0.9378305044641779, -0.9372656549463342, -0.935073533451743, -0.9312486149144087, -0.9257974564535987, -0.91873876853803, -0.9101033004679099, -0.8999335411878461, -0.8882832414441617, -0.8752167680628344, -0.8608083054410888, -0.8451409230396788, -0.8283055305979151, -0.8103997448835661, -0.7915266929973287, -0.7717937775914965, -0.751311428887667, -0.7301918671810168, -0.708547897711522, -0.6864917574949811, -0.6641340310718098, -0.6415826492796464, -0.6189419822074427, -0.5963120345508506, -0.5737877487511349, -0.5514584186356437, -0.529407213841889, -0.5077108131382715, -0.48643914287652357, -0.4656552152347049, -0.44541505963577066, -0.42576773974603643, -0.4067554477551538, -0.38841366719368087, -0.370771395330995, -0.3538514161889459, -0.33767061537682275, -0.3222403282726387, -0.30756671351679565, -0.2936511443202643, -0.28049061069560377 ], [ -0.8405665803695294, -0.8518257442903036, -0.8620225381413498, -0.8710780649119789, -0.8789182059485068, -0.8854746254077828, -0.8906857462185922, -0.894497676513684, -0.8968650652996213, -0.8977518666307666, -0.8971319927881259, -0.8949898389349772, -0.8913206643954169, -0.8861308189991014, -0.8794378067423159, -0.8712701831798966, -0.8616672873120433, -0.8506788130767775, -0.8383642297145384, -0.8247920640621975, -0.8100390611061369, -0.7941892417623915, -0.7773328787748935, -0.7595654127950249, -0.740986331128785, -0.7216980313521995, -0.7018046910699842, -0.6814111636185745, -0.6606219175982917, -0.6395400358724765, -0.6182662872051501, -0.5968982811285402, -0.5755297140327151, -0.5542497119325769, -0.5331422729623385, -0.5122858104244978, -0.49175279522084914, -0.4716094947405547, -0.45191580379114793, -0.4327251619341519, -0.41408455062598826, -0.3960345628539621, -0.3786095374812317, -0.3618377502533341, -0.3457416533494777, -0.3303381554595437, -0.3156389346089379, -0.30165077631177417, -0.2883759300855415, -0.27581247788429875 ], [ -0.806442870579884, -0.8169241647031903, -0.8264030755158344, -0.8348070070322391, -0.842067861048645, -0.8481229458990022, -0.8529158574979857, -0.8563973140502826, -0.8585259256997082, -0.859268880884577, -0.8586025322879782, -0.8565128670228426, -0.8529958480394633, -0.8480576166209364, -0.8417145491422391, -0.8339931648854171, -0.8249298854811904, -0.8145706503300173, -0.8029703959849179, -0.7901924108072559, -0.7763075791046229, -0.7613935313256575, -0.7455337186478121, -0.7288164314144654, -0.7113337813535321, -0.6931806673678902, -0.6744537439821394, -0.6552504103333938, -0.6356678359922672, -0.6158020379879394, -0.5957470212833664, -0.5755939926936815, -0.5554306559474682, -0.535340593330079, -0.5154027371833543, -0.49569093251626284, -0.4762735901455135, -0.4572134281589024, -0.4385672980950841, -0.42038609106715663, -0.402714718124106, -0.3855921584361275, -0.3690515683949156, -0.3531204444222735, -0.33782083215988234, -0.3231695747506511, -0.309178593093965, -0.2958551912431795, -0.28320238049162616, -0.2712192161418905 ], [ -0.7736057325716181, -0.7833556930538695, -0.7921606131430505, -0.7999537284424248, -0.8066725022547632, -0.8122594475851005, -0.816662922396433, -0.8198378816330939, -0.8217465694888274, -0.8223591358758574, -0.8216541620691247, -0.8196190820553099, -0.8162504881794304, -0.8115543121963469, -0.8055458757165113, -0.7982498071805989, -0.7896998257830906, -0.7799383960600594, -0.7690162600284896, -0.7569918566881273, -0.7439306412624187, -0.729904318672175, -0.7149900073420692, -0.6992693504990832, -0.6828275926259813, -0.6657526387002828, -0.6481341133199943, -0.6300624358498623, -0.6116279263872499, -0.5929199557225875, -0.5740261506365705, -0.5550316639137507, -0.5360185164333231, -0.5170650166889605, -0.4982452611475823, -0.47962871702828624, -0.46127988740424364, -0.44325805702879095, -0.4256171159795079, -0.4084054571104001, -0.3916659424038109, -0.3754359326170653, -0.35974737411462065, -0.3446269364519525, -0.33009619411715563, -0.3161718458221279, -0.3028659648488983, -0.2901862741785255, -0.27813644044097985, -0.2667163811061277 ], [ -0.7420435823564613, -0.7511066356951639, -0.7592793894374725, -0.7665004727976708, -0.7727124835662186, -0.777862731484199, -0.7819039559694171, -0.7847950035965314, -0.7865014507475953, -0.7869961573084023, -0.7862597382081841, -0.7842809409816603, -0.7810569193468041, -0.776593394990595, -0.7709047022678902, -0.7640137132565519, -0.7559516434726077, -0.746757741422708, -0.7364788679449634, -0.725168973858759, -0.7128884867131979, -0.699703619317255, -0.6856856141937611, -0.6709099390920006, -0.6554554492083717, -0.6394035318124631, -0.6228372485885305, -0.6058404902243619, -0.5884971566701764, -0.5708903751133574, -0.5531017661391322, -0.5352107668412038, -0.5172940178728116, -0.49942481964813634, -0.4816726611664792, -0.4641028232815416, -0.4467760567091523, -0.4297483336858279, -0.4130706709753018, -0.39678902088150036, -0.38094422606850675, -0.365572033309413, -0.35070316078046293, -0.3363634131747997, -0.3225738387183894, -0.3093509221148205, -0.29670680750925627, -0.28464954572809464, -0.2731833603029874, -0.2623089271089123 ] ], "zauto": true, "zmax": 2.748209605771394, "zmin": -2.748209605771394 }, { "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.2520032412332681, 0.2327428967527754, 0.21410594178813913, 0.19626905494878227, 0.17944248020225156, 0.16387860665873255, 0.14987651508709843, 0.13777578685586464, 0.1279302445207311, 0.12065407609949501, 0.11614563583845734, 0.11441808579508855, 0.11528034474730654, 0.1183891437471425, 0.12334538350268325, 0.12978425790237683, 0.13742648752270337, 0.14608830137264764, 0.15566426318929225, 0.16609870063263807, 0.17735709552615814, 0.1894038579887891, 0.20218899943292482, 0.21564345888974149, 0.22968115966736943, 0.24420517810096679, 0.2591154777083072, 0.27431620290030656, 0.2897212531449251, 0.30525756560842615, 0.32086610424943746, 0.33650093861574654, 0.3521269962762322, 0.36771711796769807, 0.3832489776510582, 0.3987022973983513, 0.41405663095315764, 0.42928984149939386, 0.44437727839779784, 0.4592915730965826, 0.47400292612281475, 0.4884797394785717, 0.5026894537585922, 0.5165994684286193, 0.5301780496631809, 0.5433951574691078, 0.5562231489571455, 0.5686373356560758, 0.5806163890135837, 0.5921425998304898 ], [ 0.24841163283808393, 0.22917370782443527, 0.21057739386826832, 0.19279424289939948, 0.1760279098963453, 0.16052332612092374, 0.1465722081967516, 0.1345081601768892, 0.12468180277228813, 0.11740780547329113, 0.11288835972119309, 0.11114215618827877, 0.11198357103901949, 0.1150743023276579, 0.12002042086872744, 0.12646286821479213, 0.13412804065187064, 0.1428365490819864, 0.15248499776266675, 0.16301697164975296, 0.17439464888397566, 0.18657728652342337, 0.19950882534617537, 0.21311411190125013, 0.2273016413609245, 0.2419701351645343, 0.25701642570626365, 0.2723427086823238, 0.28786196106554673, 0.3035010174706385, 0.31920134697167984, 0.3349179383490264, 0.35061688842547645, 0.36627232496260625, 0.3818632246185718, 0.3973705526455059, 0.412774994567174, 0.42805540181014406, 0.4431879525863827, 0.45814594486969507, 0.47290009015071527, 0.48741915931424684, 0.5016708373326358, 0.5156226630392032, 0.529242956695769, 0.5425016658766262, 0.5553710857574495, 0.5678264312840727, 0.5798462552164735, 0.5914127178359863 ], [ 0.2460657827816145, 0.22691689431714288, 0.2084283660888861, 0.19076552893304324, 0.17412360913947744, 0.15873720398877442, 0.14488652345579273, 0.13289386287147661, 0.12310095542126324, 0.11581895831433947, 0.11125456577602799, 0.10943936713710042, 0.1102059787742452, 0.1132346166816557, 0.1181459620269321, 0.12458982296097304, 0.1322957178840177, 0.1410824724913358, 0.15084113905667793, 0.16150726956096076, 0.1730338661225611, 0.18537110682660296, 0.19845492491225356, 0.21220383140473223, 0.22652187562903173, 0.24130513314977045, 0.25644930955332557, 0.27185663391652864, 0.28744092405229044, 0.30313036410688543, 0.3188680534603799, 0.3346107314145316, 0.3503262588790947, 0.3659904728571256, 0.3815839607969385, 0.39708917199933574, 0.4124881306755644, 0.4277608698398709, 0.4428845862150057, 0.457833432560294, 0.4725788157348126, 0.48709005124387783, 0.5013352301051487, 0.5152821732734811, 0.52889937528144, 0.5421568666478294, 0.5550269503383448, 0.5674847891490494, 0.5795088376033366, 0.5910811239220348 ], [ 0.24493133946225373, 0.22592330966483962, 0.20759187222801617, 0.1900948642724565, 0.1736172518564028, 0.1583807604263409, 0.14465083292057906, 0.1327348022797688, 0.12296245071133799, 0.1156407744483492, 0.11098489961507432, 0.10904869532798565, 0.10969572839642, 0.11263620453578352, 0.11751161322628768, 0.12398036102888443, 0.13176973915060078, 0.14068875122630475, 0.15061437890469737, 0.16146669761264817, 0.1731840275521359, 0.18570417089410457, 0.19895379947099673, 0.2128454486778702, 0.22728016627055828, 0.24215340579234906, 0.25736194229263293, 0.2728101239192441, 0.2884144200757939, 0.3041058321847601, 0.3198302150482173, 0.33554688323811926, 0.35122604835763843, 0.366845671185985, 0.3823882519221822, 0.39783796071292216, 0.4131783656812569, 0.4283908756965053, 0.44345389926499984, 0.45834263841994694, 0.4730293883975958, 0.48748419566540574, 0.5016757310952611, 0.5155722537000245, 0.5291425662084255, 0.5423568913298249, 0.5551876231791095, 0.5676099299518039, 0.5796022007784113, 0.5911463418120713 ], [ 0.24495943670446574, 0.22612865377761143, 0.20798546558748657, 0.1906789995806398, 0.17438247246162922, 0.15930297590341141, 0.14568931059168344, 0.13383231898119374, 0.12404954277622846, 0.11664603690780972, 0.11185121307451944, 0.10975059140319653, 0.11024931484919694, 0.11309574593284186, 0.11795501024708323, 0.12449121506789268, 0.13242251656283888, 0.14153955675062463, 0.15169705742686304, 0.16279301165206891, 0.1747465689728934, 0.18748079567413276, 0.20091255369718497, 0.21494919157998388, 0.22949038345417128, 0.24443299160978169, 0.2596769606004382, 0.27513070409153495, 0.29071501178263265, 0.30636504691379757, 0.3220304483558756, 0.3376738604646971, 0.3532683836596206, 0.36879448481276456, 0.38423685803531893, 0.3995816181654589, 0.41481407507421547, 0.4299172046395009, 0.4448708209181967, 0.45965137344184415, 0.47423224552313215, 0.48858441025112326, 0.502677303701061, 0.5164797921720959, 0.5299611350564182, 0.5430918717987797, 0.5558445866261047, 0.5681945262019169, 0.5801200622266304, 0.591603003256367 ], [ 0.2460919604804376, 0.22746073836505507, 0.20952109923702547, 0.19241264377547299, 0.17629610359808603, 0.16136338359844482, 0.1478464904626793, 0.13602040557535386, 0.12619235906576465, 0.11866919481877347, 0.11370031388984979, 0.11140998676070074, 0.11175180017453024, 0.11451660428858232, 0.11939325093408008, 0.12604742474390818, 0.13418136891338242, 0.14355991878156518, 0.15400895836377673, 0.16539950090058975, 0.17762851485853198, 0.1906030278892895, 0.2042301292588016, 0.21841294097939554, 0.23305126352935582, 0.24804509647011463, 0.2632992831187112, 0.27872788348743427, 0.2942573577036275, 0.3098281205911136, 0.32539443288381714, 0.34092288742543786, 0.3563899185955909, 0.37177881957258047, 0.38707671845046604, 0.4022718713396514, 0.4173515095618276, 0.4323003554015232, 0.4470998154049652, 0.46172778221631283, 0.47615892815091876, 0.49036535333475834, 0.5043174523188645, 0.5179848785575146, 0.5313375094089426, 0.5443463400722172, 0.5569842594142969, 0.5692266817861277, 0.581052025717147, 0.5924420427150461 ], [ 0.24826679105832294, 0.22984636145403947, 0.21211397442221608, 0.19519960660797006, 0.17925184503222852, 0.1644483116701326, 0.15100582790671618, 0.139185936051054, 0.12928875099989032, 0.12162656728327577, 0.11647235932170669, 0.11399212037250335, 0.11418982039191788, 0.11689917971598639, 0.12183107082567143, 0.12864903103692985, 0.13703453067720275, 0.14672178218047438, 0.1575039373357505, 0.16922242864741294, 0.18175070614996072, 0.1949794451637376, 0.20880637492743262, 0.2231312588055012, 0.23785513133204653, 0.25288231769730457, 0.26812371679833114, 0.2835000858479042, 0.29894445688294036, 0.3144032308953581, 0.3298358616235692, 0.3452133171152405, 0.36051567671265883, 0.37572928783320886, 0.39084388902148437, 0.4058500295677927, 0.42073700968297195, 0.43549145366281844, 0.450096530031711, 0.46453175802835206, 0.47877329260845003, 0.4927945586163633, 0.5065671038625758, 0.5200615541676319, 0.533248574806938, 0.5460997671057642, 0.5585884525252163, 0.5706903172066655, 0.5823839065433782, 0.5936509717179206 ], [ 0.2514223070899962, 0.23321679800489434, 0.21568903789986033, 0.1989601889223637, 0.18316822475787134, 0.16847881145574226, 0.15509667279295514, 0.14327350105510672, 0.1333057580405684, 0.12551350880222145, 0.12019346863451598, 0.11755117229296026, 0.11763747418176133, 0.12032559471186563, 0.1253458651627995, 0.13235777709877616, 0.1410205469385286, 0.1510366928650453, 0.16216605248952284, 0.17422037562566703, 0.18704985657607448, 0.2005292940700661, 0.21454762148063858, 0.22900182159983318, 0.2437947219423244, 0.25883550152615636, 0.27404160601313043, 0.2893409357486355, 0.30467348531129046, 0.3199919689109494, 0.33526129384464143, 0.3504570016668938, 0.36556296370763025, 0.3805686929418364, 0.3954666312076014, 0.4102497113576457, 0.4249094030238751, 0.4394343511919709, 0.45380962635136324, 0.46801653451622655, 0.48203288931358657, 0.4958336258460603, 0.5093916330725129, 0.5226786924080007, 0.5356664294421917, 0.5483272082672759, 0.5606349203052249, 0.5725656394488505, 0.5840981316216669, 0.5952142191977615 ], [ 0.2555006696505144, 0.2375113313543019, 0.22018449969484527, 0.20363423511488654, 0.18799048902227872, 0.17341041120015602, 0.1600906660098447, 0.14827711508434807, 0.13826545251648736, 0.1303837523406654, 0.12494882004922904, 0.12219843487846078, 0.12222178635718405, 0.12492508070117499, 0.13005545864642717, 0.1372691173303673, 0.1462055913859789, 0.15653873956871192, 0.167997852010967, 0.18036721305471298, 0.19347536736226437, 0.20718227190818853, 0.22136862368494134, 0.23592883459155198, 0.2507675141894185, 0.2657985740472838, 0.2809458534038724, 0.2961442554525155, 0.31134062747988417, 0.32649391774784114, 0.34157443117908426, 0.3565622422263441, 0.3714449844933083, 0.3862153178113074, 0.4008683833605201, 0.41539951380236967, 0.42980238976630836, 0.44406774708225766, 0.4581826574490648, 0.47213033963994694, 0.4858904138976789, 0.4994394890501402, 0.5127519669702498, 0.525800957529476, 0.5385592140428699, 0.5510000198574634, 0.563097977733827, 0.5748296727200541, 0.5861741950721774, 0.5971135219996624 ], [ 0.26044969173972604, 0.24267871203986854, 0.22555244744363187, 0.2091802845524606, 0.19368746381056143, 0.17922665906714574, 0.1659907963162128, 0.15422362176203042, 0.14422176126295724, 0.13631925425516256, 0.1308459926721033, 0.1280607233841055, 0.12807878700336311, 0.13083083887337849, 0.1360785927938856, 0.14347828818341635, 0.15265599839261812, 0.16326351808343287, 0.17500515735660144, 0.1876418136449487, 0.20098301412615582, 0.21487530125398802, 0.22919165331906916, 0.24382380729224934, 0.25867767985031964, 0.27367126721005397, 0.2887341208255908, 0.30380751678532836, 0.31884461717038476, 0.33381016821028137, 0.34867953022095965, 0.36343704698276685, 0.3780739141458805, 0.3925857897389282, 0.4069704099160374, 0.4212254434930471, 0.435346757676461, 0.44932719290410994, 0.4631558721454701, 0.4768180098899543, 0.49029514382563677, 0.503565688882544, 0.5166057067048596, 0.5293897897723966, 0.5418919738260454, 0.5540866108283445, 0.565949154122874, 0.5774568254762201, 0.5885891489807868, 0.5993283488231805 ], [ 0.26622335821965304, 0.24867680387568153, 0.23175713950731072, 0.21557190019647035, 0.2002451819380158, 0.1859292206536188, 0.17281712183402625, 0.1611532918937338, 0.15123545369343924, 0.14339954511172076, 0.13797932641152238, 0.1352412264172697, 0.1353131170155047, 0.1381410292692685, 0.14349961823705082, 0.15105017815717262, 0.16041381562771234, 0.17122912250897196, 0.18318283390199058, 0.19601780321065532, 0.20952790698599172, 0.22354802376216426, 0.2379439650120249, 0.252604533175964, 0.26743620597798046, 0.2823600842827018, 0.2973103978399724, 0.31223382224066387, 0.32708898224473437, 0.34184571256401564, 0.35648385822708945, 0.3709915836390536, 0.3853632989719986, 0.3995973949539006, 0.41369400434398307, 0.4276529906006286, 0.44147231623684446, 0.45514688080613264, 0.4686678550767599, 0.4820224836997766, 0.495194289184515, 0.5081635869265709, 0.5209082130512936, 0.5334043707956833, 0.5456275132058385, 0.5575531963633574, 0.5691578551063315, 0.5804194700719889, 0.5913181095048948, 0.6018363410106559 ], [ 0.2727812408625523, 0.2554708962987847, 0.2387717975398821, 0.22279246725883778, 0.20765918907547032, 0.19352722332155822, 0.18059279023647012, 0.169102357662876, 0.15935332302156982, 0.1516780503954696, 0.1464042343571933, 0.14379294283714375, 0.14397186141018137, 0.14689422545090025, 0.15234653692390018, 0.16000050338574942, 0.1694812189401844, 0.1804235823195407, 0.19250487314315717, 0.20545588012567575, 0.21905867755671457, 0.2331385438979769, 0.24755483972800182, 0.26219321663258593, 0.27695991808965925, 0.2917780539367103, 0.3065853400619452, 0.32133269872262726, 0.3359831824199828, 0.3505108319339806, 0.3648992515245396, 0.3791398443291644, 0.39322977561026884, 0.40716980983442663, 0.42096219896924586, 0.4346087909483929, 0.4481094906788979, 0.46146115442096347, 0.47465694389889673, 0.4876861182876578, 0.5005342058624286, 0.5131834747386881, 0.5256136131553334, 0.5378025317698634, 0.5497272102280196, 0.5613645245760026, 0.5726920080924767, 0.5836885137217994, 0.5943347601238379, 0.6046137547086453 ], [ 0.2800871404475931, 0.26303122757987984, 0.24657472253012125, 0.23082963350451366, 0.21592710988222688, 0.20202788674737354, 0.18933288678266738, 0.178090515880734, 0.16859509084818347, 0.16116936585344935, 0.15612579837794321, 0.15370918552236723, 0.15403697037325573, 0.15706329308583006, 0.16258575149323876, 0.17029099234599754, 0.17981592114575687, 0.1908004514015014, 0.20292020834605848, 0.2158999402520552, 0.22951400081349702, 0.24358042215786668, 0.2579531000188659, 0.2725145325444183, 0.2871700783354524, 0.3018438373927084, 0.31647583810630214, 0.3310200704435684, 0.34544292380661956, 0.3597216905341047, 0.3738429310724132, 0.38780062953832506, 0.4015941764389269, 0.41522628706371645, 0.428700996943028, 0.44202187422160844, 0.45519056176167283, 0.4682057200483096, 0.4810623958530905, 0.49375179937904856, 0.5062614396434324, 0.5185755465923584, 0.5306756988595955, 0.5425415764555002, 0.5541517653889122, 0.5654845534733732, 0.5765186708230136, 0.5872339428258232, 0.59761183634546, 0.6076358907839766 ], [ 0.2881072986631698, 0.2713302174083804, 0.25514541124751805, 0.23967025363050848, 0.22504250326705885, 0.21142957867855092, 0.1990372517865504, 0.18811437220920604, 0.17894859116461556, 0.1718473278497831, 0.16710051036012236, 0.1649289767887282, 0.16543332192782667, 0.16856449298227008, 0.1741305928307758, 0.18183625164463246, 0.19133595069885362, 0.20228157735912186, 0.2143538222342798, 0.22727695946932142, 0.24082167307573102, 0.2548013057881873, 0.26906557274711057, 0.2834941239677964, 0.29799105388533675, 0.31248064805694475, 0.32690422636528477, 0.3412177638250069, 0.3553899461346198, 0.3694003787564707, 0.3832377683340262, 0.3968980012359485, 0.4103821346679063, 0.42369437915842395, 0.43684018329414837, 0.44982453463670447, 0.46265057133176085, 0.47531856560990093, 0.4878253018395822, 0.500163835277959, 0.5123235881891635, 0.5242907201352957, 0.5360486994146553, 0.5475790016714446, 0.558861867569189, 0.5698770617359278, 0.5806045877227837, 0.5910253266484694, 0.6011215792289761, 0.6108775012219614 ], [ 0.29680848478974053, 0.28033980311567847, 0.26446114338879806, 0.24929634490023744, 0.2349904733753205, 0.2217175906167036, 0.20968718714011517, 0.19914608086504237, 0.1903714543035369, 0.18365068666036213, 0.1792463284343968, 0.1773510032548802, 0.17804518747555956, 0.1812745464453513, 0.18685715717724052, 0.19451711478129766, 0.20392997189886133, 0.21476444057654734, 0.22671150088075126, 0.23949969695034898, 0.25289980333581236, 0.26672308341337403, 0.2808165943899897, 0.2950577561556647, 0.3093493374176189, 0.3236152888586217, 0.33779743381443683, 0.35185282736084056, 0.36575153735298443, 0.3794746274564572, 0.39301219064938614, 0.4063613625155517, 0.4195243169514329, 0.43250630079433844, 0.44531379336015153, 0.4579528825420041, 0.47042793547745665, 0.48274061548469266, 0.4948892650906486, 0.5068686437488952, 0.5186699828141018, 0.5302813020713685, 0.5416879223459656, 0.5528731067554313, 0.5638187674350992, 0.5745061831129097, 0.5849166837966999, 0.5950322704207802, 0.6048361483461019, 0.6143131633216169 ], [ 0.30615620148196926, 0.29002915488933395, 0.2744943105529831, 0.2596822573163744, 0.24574506868105908, 0.23286233978221813, 0.22124521467834107, 0.21113552203994154, 0.20279651314673397, 0.1964922540969561, 0.19245553702082016, 0.1908495044342208, 0.19173391115493152, 0.19504859531926252, 0.2006211159476949, 0.2081952435844751, 0.21746912805459828, 0.22813115903413717, 0.23988624761640087, 0.2524709354162308, 0.2656593457621814, 0.2792631509394343, 0.2931283913748329, 0.3071311208904039, 0.3211730152047014, 0.3351774617887028, 0.3490862606854206, 0.3628568594124528, 0.37645996443289953, 0.38987736988382843, 0.40309988551154563, 0.41612530390648134, 0.4289564039153906, 0.44159903109925447, 0.4540603217636864, 0.4663471437289942, 0.4784648174985958, 0.4904161607983846, 0.502200873267201, 0.5138152516008023, 0.5252522026979457, 0.5365015057812694, 0.547550264993032, 0.5583834912727605, 0.5689847552475731, 0.5793368598242585, 0.5894224905184452, 0.5992248118267955, 0.6087279879984243, 0.6179176156079992 ], [ 0.31611318735081134, 0.30036293665556324, 0.28521059966300316, 0.27079305015964006, 0.2572682438047707, 0.24481942515552446, 0.23365680960376087, 0.22401427359896378, 0.2161384054562114, 0.21026821172420931, 0.2066064514536767, 0.20528774289009652, 0.20635233653370472, 0.20973472515197672, 0.21527151447234044, 0.2227255145670514, 0.23181755317267136, 0.242256930758748, 0.25376470017614594, 0.2660880816212979, 0.2790071770580491, 0.29233628167058223, 0.3059220415577711, 0.3196401501069646, 0.3333916482067655, 0.34709938636145116, 0.3607048628684384, 0.3741654517609334, 0.38745194040383885, 0.40054627389354897, 0.41343942252804966, 0.42612932715868707, 0.43861891898560273, 0.4509142446570938, 0.4630227486598724, 0.4749517713777726, 0.486707314437158, 0.4982931086283822, 0.5097099982187623, 0.5209556331401494, 0.5320244407987591, 0.5429078343793963, 0.5535946055174509, 0.5640714460347099, 0.5743235452557229, 0.5843352149875122, 0.5940905021772882, 0.6035737582800978, 0.6127701434263698, 0.6216660518260864 ], [ 0.3266383296703113, 0.3113001894779108, 0.296568031241614, 0.28258394426263206, 0.2695100537855263, 0.2575309315146398, 0.24685316059827375, 0.23770006076080766, 0.23029974012929688, 0.22486577472060518, 0.2215721781975145, 0.220527419661493, 0.22175450974135558, 0.22518366258087116, 0.2306601723391814, 0.23796479732484502, 0.24684021269213147, 0.2570167039557003, 0.26823252477402015, 0.28024730464172243, 0.29284909290859706, 0.30585664848563443, 0.3191187091155348, 0.33251164613115275, 0.34593646196184236, 0.35931568854093887, 0.37259045266164337, 0.3857177896812869, 0.398668188903677, 0.411423317393558, 0.4239738711517361, 0.43631752499121734, 0.44845698111929266, 0.4603981417336981, 0.4721484472967988, 0.4837154274589048, 0.495105506491274, 0.5063230920233541, 0.5173699582224579, 0.5282449157533845, 0.5389437438234352, 0.5494593463795754, 0.5597820861096796, 0.5699002464386955, 0.5798005726493736, 0.5894688476238508, 0.5988904643591293, 0.6080509652524926, 0.6169365262442501, 0.6255343715377358 ], [ 0.33768604151402554, 0.32279384306931846, 0.308516778677703, 0.29500066125427676, 0.28240974291927545, 0.2709274736684644, 0.2607542913499313, 0.2521009293892626, 0.24517611759651955, 0.240168717139481, 0.23722628697164438, 0.23643425936316434, 0.23780112600306774, 0.24125414696870834, 0.2466470279908525, 0.25377721442946555, 0.2624079178901242, 0.2722897473864216, 0.2831783762090998, 0.29484679097762123, 0.30709234020073495, 0.3197396768338722, 0.33264090140184427, 0.34567404445988503, 0.35874072089632314, 0.3717634856559648, 0.3846831812192574, 0.39745640436590507, 0.4100531243793405, 0.42245444064626503, 0.43465045775469663, 0.4466382659896418, 0.4584200328985005, 0.4700012289532109, 0.4813890220624265, 0.4925908794299214, 0.5036134109776172, 0.5144614778480915, 0.5251375748647147, 0.5356414799720263, 0.5459701490110038, 0.5561178224679123, 0.5660763030599887, 0.5758353594325427, 0.5853832114927171, 0.5947070562556708, 0.6037935986042714, 0.6126295581245615, 0.6212021303464685, 0.6294993876392418 ], [ 0.34920610563888904, 0.3347908059936003, 0.3209996477531159, 0.30798044154048365, 0.295897427764454, 0.28493060754184807, 0.2752721543396504, 0.26711884031307775, 0.2606599228619289, 0.25606102258328495, 0.25344606080523036, 0.252880783481384, 0.2543619440645845, 0.25781521323128614, 0.2631025000104469, 0.27003667951001353, 0.2784000058828627, 0.2879623448661889, 0.29849644995853175, 0.30978901896049815, 0.32164752597810103, 0.33390355197195953, 0.3464135809978433, 0.35905816671068685, 0.3717401749738728, 0.3843825860055985, 0.3969261496444222, 0.4093270488884007, 0.4215546389028429, 0.4335892817965003, 0.44542027987011146, 0.45704391051152427, 0.4684615750230954, 0.47967808431411013, 0.4907001119031225, 0.5015348466632061, 0.5121888737400963, 0.5226673030277883, 0.5329731522939088, 0.5431069786048004, 0.5530667390588402, 0.5628478514991337, 0.5724434187529136, 0.5818445763443763, 0.5910409233542442, 0.600020998601894, 0.608772768861253, 0.6172841016012062, 0.6255432010396532, 0.6335389925241989 ], [ 0.3611439444959123, 0.3472325451895899, 0.33395306915180417, 0.32145353485356937, 0.3098961239831868, 0.2994553525625385, 0.2903135045665178, 0.2826526482110492, 0.2766431053248617, 0.27242918721234677, 0.27011416450351916, 0.2697473612707426, 0.27131639697448157, 0.2747466262054812, 0.2799079982224128, 0.2866276505569033, 0.2947053823956144, 0.3039290732691458, 0.31408788299685014, 0.32498215685555143, 0.33642990580504245, 0.3482703239311951, 0.3603650488681153, 0.37259787332972144, 0.3848734948673234, 0.3971157327792278, 0.40926549453491673, 0.4212786598709403, 0.4331239728121398, 0.44478098583466863, 0.4562380784985286, 0.4674905668915606, 0.4785389227688647, 0.4893871265042541, 0.5000411818500118, 0.5105078207607913, 0.520793422467695, 0.5309031630778712, 0.5408404014790243, 0.5506062958369835, 0.5601996340431756, 0.5696168523527368, 0.5788522099633647, 0.5878980837530972, 0.5967453467329183, 0.6053837955741317, 0.6138025962506664, 0.6219907217368001, 0.6299373611948986, 0.6376322856434459 ], [ 0.37344124409022, 0.36005604063773566, 0.3473084468963877, 0.3353449722568209, 0.32432391553723583, 0.31441265560022774, 0.3057824738211204, 0.29860054005270303, 0.29301922440869393, 0.2891636740980973, 0.28711942691468645, 0.28692237820885624, 0.2885533207353204, 0.29193840500622104, 0.2969554766167124, 0.3034448869955275, 0.311222571417313, 0.3200931464996028, 0.32986133063136264, 0.3403407800289166, 0.35136014580246905, 0.36276663421640293, 0.3744275788267156, 0.38623057288506346, 0.3980826435628847, 0.409908840709829, 0.42165050247159974, 0.4332633682128129, 0.4447156423423951, 0.45598606974343675, 0.4670620599157628, 0.4779378868456022, 0.488612989427625, 0.49909039831746665, 0.5093753159936095, 0.5194738755086967, 0.5293920990997957, 0.539135070682991, 0.5487063271295167, 0.5581074632938063, 0.567337936259406, 0.5763950462168649, 0.5852740654917455, 0.5939684838304026, 0.6024703371085498, 0.6107705878632145, 0.6188595289981428, 0.6267271861349759, 0.6343636988417489, 0.64175966589503 ], [ 0.38603684049766696, 0.3731949911405138, 0.3609937104155643, 0.3495764525823546, 0.339096109257543, 0.3297116849792696, 0.32158282012482103, 0.31486202847911254, 0.30968499333666627, 0.3061598798439065, 0.3043571994824661, 0.3043020540192435, 0.3059703751643871, 0.30929003110148023, 0.31414661617079276, 0.3203927630749844, 0.3278592587079731, 0.3363662245771414, 0.34573302147736884, 0.3557861161159235, 0.3663646871773082, 0.3773241303847107, 0.3885378245915572, 0.39989758006119985, 0.4113131598925796, 0.42271119358369696, 0.4340337205262454, 0.4452365288868923, 0.45628739939973006, 0.46716432509820033, 0.4778537545167923, 0.48834889350401806, 0.49864809539520366, 0.5087533672690877, 0.5186690185853536, 0.5284004758936733, 0.5379532826994085, 0.5473322969493771, 0.5565410905174942, 0.5655815463940237, 0.5744536409601606, 0.5831553915945693, 0.5916829445078275, 0.6000307744429362, 0.6081919667423653, 0.6161585530601383, 0.6239218743283923, 0.6314729480285926, 0.638802820913312, 0.645902892661763 ], [ 0.3988677715594716, 0.38658115079068517, 0.3749349344560811, 0.3640682065648597, 0.354127258267124, 0.3452618833816093, 0.33761984939946654, 0.3313395781837004, 0.32654147724785426, 0.32331883107028947, 0.321729548655396, 0.32179019208826926, 0.32347345704511654, 0.32670965771962895, 0.3313919691639241, 0.3373844717075185, 0.3445316477398539, 0.352667971782621, 0.36162652568151393, 0.3712459981430914, 0.3813758393766509, 0.3918796475810586, 0.4026370409606069, 0.4135443363769338, 0.42451434963072415, 0.43547558737337055, 0.44637104241516556, 0.45715674835450537, 0.4678002036209841, 0.4782787414391949, 0.4885778999705642, 0.4986898335332901, 0.5086117984114934, 0.5183447425953774, 0.5278920256393349, 0.5372582911915896, 0.5464485098719322, 0.5554672039246217, 0.5643178577977493, 0.5730025111276713, 0.5815215232625872, 0.5898734921083801, 0.5980553052208145, 0.6060622979790458, 0.6138884924084244, 0.6215268906340287, 0.6289697987582795, 0.6362091598050397, 0.6432368778754763, 0.650045119457913 ], [ 0.4118704008259838, 0.40014568972639775, 0.38905791550935437, 0.3787407352304756, 0.36933297434710277, 0.36097473826724896, 0.35380201595543326, 0.3479399193598913, 0.3434950362225658, 0.3405477211911443, 0.3391453982453221, 0.33929797663543104, 0.34097622621298385, 0.3441134540891735, 0.3486102176192889, 0.35434128968629547, 0.3611638087408152, 0.36892554118195997, 0.377472397265752, 0.3866546604687628, 0.3963317061470344, 0.4063752307781488, 0.4166711656687875, 0.42712051810411017, 0.43763939215497727, 0.44815841577252974, 0.4586217603074443, 0.4689858963253046, 0.47921819271143884, 0.4892954374014252, 0.4992023377352817, 0.5089300450269897, 0.5184747394712906, 0.5278363059494947, 0.5370171269336215, 0.5460210143047106, 0.5548522968196044, 0.5635150739992495, 0.5720126405754428, 0.5803470787722769, 0.5885190091639712, 0.5965274851683863, 0.6043700118152283, 0.6120426665126243, 0.6195402981895141, 0.6268567813172476, 0.6339853026932678, 0.6409186612092432, 0.6476495638038243, 0.654170904105573 ], [ 0.4249815332388607, 0.4138204933057051, 0.4032896215617168, 0.39351635204289764, 0.3846314814725848, 0.37676525175751974, 0.3700422142616361, 0.36457508433982866, 0.36045806035685646, 0.3577603322719351, 0.35652065585352205, 0.356743841005175, 0.35839976452454275, 0.36142511184338544, 0.3657275899779585, 0.3711919693703404, 0.37768710467230654, 0.3850730807453898, 0.39320778759494873, 0.4019524673920935, 0.41117602080344656, 0.4207580572488062, 0.43059080426688484, 0.4405800581431191, 0.45064537657275977, 0.4607197023053832, 0.47074857975082646, 0.4806890952375337, 0.49050864245151704, 0.5001835905836498, 0.5096979146036658, 0.5190418342260956, 0.528210499248706, 0.5372027525801127, 0.5460199971341022, 0.5546651878860677, 0.5631419651870518, 0.571453939717928, 0.5796041333529495, 0.587594574007709, 0.5954260366873145, 0.6030979178387321, 0.6106082260799793, 0.6179536696358258, 0.6251298194215734, 0.6321313266180776, 0.6389521746027994, 0.6455859470052786, 0.6520260961718249, 0.6582661991865375 ], [ 0.43813945896112483, 0.4275393369610146, 0.41755945994363103, 0.4083204880301313, 0.39994488951669094, 0.39255311028619266, 0.38625877980666007, 0.3811631938850279, 0.3773495207242719, 0.3748773535729199, 0.373778318314209, 0.37405338743117883, 0.3756723407764558, 0.3785754891944931, 0.38267742332199234, 0.3878722617696336, 0.394039717973378, 0.4010513007141991, 0.40877607953137357, 0.4170856271500541, 0.4258579406440548, 0.4349803022402654, 0.4443511518238999, 0.45388110600462206, 0.46349328255501154, 0.4731230868049252, 0.4827175998100864, 0.49223468558930134, 0.5016419120810582, 0.510915360706923, 0.5200383836381769, 0.5290003559297756, 0.5377954608530328, 0.546421540032403, 0.554879034420057, 0.5631700369764907, 0.5712974726965099, 0.5792644161422535, 0.5870735509746281, 0.5947267703374942, 0.6022249116581131, 0.6095676148042923, 0.6167532888517131, 0.6237791701384698, 0.630641452881661, 0.6373354733594283, 0.6438559293891487, 0.6501971183653528, 0.6563531792346711, 0.6623183262513096 ], [ 0.45128488011346946, 0.4412388965085707, 0.4318003330188833, 0.4230827437474524, 0.4152001879732813, 0.4082635681814939, 0.40237622189250377, 0.3976290161528881, 0.3940953505338689, 0.39182659591419916, 0.390848538004616, 0.39115932532511305, 0.3927292398304798, 0.39550235009783113, 0.39939983496519915, 0.4043245472559297, 0.4101662695459585, 0.4168071085593956, 0.42412656052640807, 0.4320059170871341, 0.440331829269455, 0.4489989757332712, 0.45791187577424763, 0.4669859451994418, 0.4761479197448297, 0.4853357750267231, 0.4944982628666137, 0.5035941682336396, 0.5125913738394852, 0.5214658034166888, 0.5302003011875585, 0.538783494221452, 0.5472086759109926, 0.5554727420325014, 0.5635752051173648, 0.5715173075893311, 0.5793012489474506, 0.5869295370340475, 0.5944044681459366, 0.6017277355854109, 0.6089001614408692, 0.6159215421854086, 0.6227905952998026, 0.6295049917084594, 0.636061457420993, 0.6424559273690352, 0.6486837349145221, 0.6547398217248748, 0.6606189544748514, 0.6663159369493112 ], [ 0.4643616926031185, 0.45485957342750144, 0.4459494718189271, 0.4377376907179232, 0.4303299745250296, 0.42382806897108044, 0.41832571530029966, 0.4139043212936203, 0.4106286689387975, 0.40854309968386165, 0.4076686323302111, 0.40800139707740307, 0.4095126160382018, 0.4121501552418592, 0.4158414627888898, 0.42049754074972945, 0.4260175075093867, 0.43229330078572364, 0.43921413465451115, 0.44667042835324816, 0.4545570404658965, 0.46277574626402734, 0.47123697575646073, 0.47986088205225214, 0.4885778369799633, 0.4973284595474518, 0.5060632792810965, 0.5147421263150304, 0.5233333273724969, 0.5318127740556591, 0.54016291847104, 0.5483717416195888, 0.556431732079483, 0.5643389059333067, 0.5720918931856306, 0.5796911106791581, 0.58713803646719, 0.594434595606452, 0.601582662405741, 0.6085836794183012, 0.6154383890772649, 0.6221466700385619, 0.6287074671850026, 0.6351188019771243, 0.6413778484614661, 0.6474810597456302, 0.653424330040408, 0.6592031783242409, 0.6648129411479449, 0.6702489639017593 ], [ 0.477317610249147, 0.4683461304763367, 0.4599490529777097, 0.45222543808016824, 0.44527294297055686, 0.43918463404496905, 0.4340453804132792, 0.42992805569119086, 0.4268898614129137, 0.42496913777179873, 0.4241830247631357, 0.42452626851528963, 0.425971339916532, 0.42846986947077575, 0.43195523871838487, 0.4363460394026988, 0.4415500403067167, 0.44746829434218005, 0.4539990647155105, 0.4610413286078452, 0.4684977077131447, 0.4762767594123506, 0.4842946296765997, 0.49247611526338736, 0.5007552096808742, 0.509075218724525, 0.5173885319011616, 0.5256561300935094, 0.5338469007490158, 0.5419368219711476, 0.5499080674605282, 0.5577480758798801, 0.5654486210002844, 0.5730049127544634, 0.5804147537957881, 0.5876777710652501, 0.5947947370015353, 0.6017669902933829, 0.6085959614726095, 0.6152828042664761, 0.6218281296059023, 0.6282318356729146, 0.6344930245024272, 0.6406099935261145, 0.6465802891027421, 0.6524008085064397, 0.658067936977159, 0.6635777071709562, 0.6689259695510043, 0.6741085637918954 ], [ 0.4901046303141972, 0.48164814471856504, 0.47374661472455676, 0.4664919882973862, 0.45997416034046823, 0.4542780510071634, 0.4494803824179372, 0.44564636072111286, 0.4428265328146425, 0.4410541193007724, 0.44034311306171037, 0.44068737057262913, 0.44206081752185566, 0.4444187604759407, 0.44770016836213694, 0.45183068678132954, 0.4567260915668723, 0.4622958801164425, 0.4684467327003925, 0.475085636688084, 0.482122538095155, 0.48947245332381195, 0.49705703062449147, 0.5048055919006342, 0.5126557111841227, 0.520553398936099, 0.5284529646960459, 0.5363166278571062, 0.544113940233972, 0.5518210765821172, 0.559420041558863, 0.5668978344324614, 0.5742456063725867, 0.5814578393694909, 0.5885315705832666, 0.5954656810494886, 0.6022602630292815, 0.60891607582427, 0.6154340955860899, 0.621815160603263, 0.6280597098515203, 0.6341676093661038, 0.6401380583443992, 0.6459695648919762, 0.6516599800208058, 0.6572065778852701, 0.6626061702473767, 0.6678552437108346, 0.672950109244745, 0.6778870548111214 ], [ 0.5026793482440687, 0.49472029288613795, 0.48729529396000426, 0.48048940993929706, 0.4743851650077326, 0.46905989432808454, 0.4645828797752156, 0.4610124609769507, 0.45839335093804073, 0.45675440397301553, 0.45610706661889094, 0.45644468701990587, 0.4577427714763291, 0.45996017334887473, 0.46304109884731215, 0.46691773496402533, 0.4715132593535588, 0.4767449838411274, 0.4825274075659257, 0.48877500210433616, 0.49540460714863443, 0.5023373708421114, 0.5095002164361603, 0.5168268529830864, 0.5242583718011019, 0.5317434839128867, 0.5392384589597033, 0.5467068257650786, 0.5541188909728285, 0.5614511266920093, 0.5686854719749581, 0.575808586891961, 0.5828110922548051, 0.5896868227601992, 0.5964321164286993, 0.6030451586176242, 0.609525394511024, 0.6158730197989044, 0.622088555263963, 0.6281725072528148, 0.634125112604999, 0.6399461636416179, 0.6456349063628491, 0.6511900031324285, 0.6566095498671565, 0.6618911370931265, 0.6670319441350732, 0.672028856099362, 0.6768785941025841, 0.6815778502837578 ], [ 0.5150031351777512, 0.5075224886306632, 0.5005539094588062, 0.4941758567710433, 0.48846391720778504, 0.483488409491114, 0.4793118505743046, 0.4759864461116886, 0.4735517990736185, 0.4720330395143669, 0.4714395595246141, 0.47176448942615995, 0.4729849800991939, 0.4750632736173681, 0.47794846474170993, 0.4815787929852664, 0.48588426810031354, 0.4907894237623486, 0.49621601160208434, 0.5020854830674327, 0.5083211508650969, 0.5148499667460948, 0.5216038922325499, 0.5285208702868265, 0.5355454280003399, 0.542628953868793, 0.5497296997446142, 0.556812559000724, 0.56384867055002, 0.5708148945460478, 0.5776932008478793, 0.5844700063049789, 0.591135491955909, 0.5976829264871689, 0.6041080177959903, 0.6104083102201561, 0.6165826409087287, 0.6226306648989647, 0.6285524547569358, 0.634348177182157, 0.6400178458398412, 0.6455611469450175, 0.6509773318505445, 0.6562651691367501, 0.6614229474882832, 0.6664485199677945, 0.67133938012111, 0.6760927606149278, 0.6807057457380793, 0.6851753900034453 ], [ 0.5270421951044189, 0.5200198933101099, 0.5134869168928049, 0.5075154615928703, 0.5021746314578758, 0.49752828932757476, 0.49363282301560824, 0.4905349688874318, 0.4882698558681906, 0.4868594360338387, 0.48631144883297, 0.4866190248098442, 0.4877609764363016, 0.48970275736500535, 0.4923980080966005, 0.4957905558904651, 0.4998167066240298, 0.504407658477643, 0.5094918795593758, 0.5149973184881071, 0.520853351806931, 0.5269924085739603, 0.5333512457547905, 0.539871875233525, 0.546502163276202, 0.5531961363696813, 0.5599140345671669, 0.5666221561691599, 0.5732925371153474, 0.5799025060142461, 0.5864341521695626, 0.5928737398730974, 0.5992110979887514, 0.605439009643969, 0.611552622757502, 0.617548898191093, 0.6234261085242829, 0.6291833968276033, 0.6348204013785402, 0.640336949073827, 0.6457328174008952, 0.6510075623041719, 0.6561604071756878, 0.6611901865555019, 0.6660953369656875, 0.670873926616868, 0.6755237154894859, 0.6800422374529111, 0.6844268965785574, 0.6886750705534472 ], [ 0.5387675199559999, 0.5321828222248276, 0.5260642604105924, 0.520478131223074, 0.5154875175520647, 0.511150368148591, 0.5075175334517967, 0.5046308799566669, 0.5025216197769371, 0.5012089913424721, 0.5006994089642871, 0.5009861639672277, 0.5020497124094208, 0.5038585311047503, 0.5063704730520249, 0.5095345130761022, 0.5132927497036253, 0.5175825218656575, 0.5223385074723977, 0.5274946913546311, 0.5329861175041307, 0.5387503700814034, 0.5447287553955653, 0.550867180481967, 0.5571167418541136, 0.5634340504131956, 0.569781325987498, 0.5761262985145265, 0.5824419535090518, 0.5887061581157607, 0.5949012014743743, 0.6010132798718579, 0.6070319535810176, 0.612949598604464, 0.618760872876774, 0.6244622128866413, 0.6300513732002601, 0.6355270180270672, 0.6408883708061638, 0.646134924852443, 0.6512662154391257, 0.6562816513621468, 0.6611804020793791, 0.6659613349783704, 0.6706229962164116, 0.6751636278920311, 0.6795812140230105, 0.683873547880443, 0.6880383136055889, 0.6920731756521322 ], [ 0.5501547609533702, 0.5439865672463778, 0.538261143565656, 0.5330392662747022, 0.5283784535841092, 0.5243312559720686, 0.5209435324191696, 0.5182528175396571, 0.5162868938867535, 0.515062680688339, 0.5145855335006472, 0.5148490196399499, 0.5158351952131075, 0.5175153665685815, 0.5198512783354131, 0.5227966376568104, 0.5262988637241482, 0.530300944780308, 0.5347432904436217, 0.5395654827099425, 0.5447078505817037, 0.5501128171733594, 0.5557259912111535, 0.5614969949224199, 0.5673800362603441, 0.5733342449598904, 0.5793237993954801, 0.5853178752713022, 0.5912904485977439, 0.5972199849358056, 0.6030890451542442, 0.6088838354238352, 0.6145937262122189, 0.6202107618666001, 0.6257291791206874, 0.6311449496226013, 0.636455358408156, 0.6416586271840587, 0.646753588381746, 0.6517394132417879, 0.6566153947400684, 0.6613807840177239, 0.6660346771678205, 0.6705759477919645, 0.6750032196831105, 0.6793148733131535, 0.6835090794849122, 0.6875838535120848, 0.6915371235703498, 0.6953668073629938 ], [ 0.5611840336191118, 0.555411155053133, 0.5500577399113689, 0.545179426348641, 0.5408286111407976, 0.5370529318583686, 0.5338937561154404, 0.5313847677091329, 0.5295507450827525, 0.5284066232472522, 0.5279569151950706, 0.5281955438837129, 0.5291061038685408, 0.5306625368586514, 0.5328301726611884, 0.5355670605322457, 0.5388254989141418, 0.5425536651482356, 0.5466972504217078, 0.5512010169287933, 0.5560102112087683, 0.5610717869490527, 0.566335409690642, 0.5717542330125774, 0.5772854498354435, 0.5828906330831514, 0.5885358871934749, 0.5941918362985174, 0.5998334768726633, 0.6054399228487434, 0.6109940701512712, 0.616482205708264, 0.6218935835958866, 0.6272199882655647, 0.6324553019526347, 0.6375950904702933, 0.6426362187238678, 0.6475765044941951, 0.6524144163846775, 0.6571488193523195, 0.66177876899504, 0.6663033537885148, 0.6707215827913816, 0.6750323149927971, 0.6792342254729196, 0.6833258028819167, 0.6873053723992908, 0.6911711382824259, 0.6949212403109127, 0.6985538188341758 ], [ 0.5718396723887771, 0.5664410580560612, 0.5614388609062426, 0.5568839582238384, 0.5528240496218565, 0.5493023122665764, 0.5463560779583732, 0.5440156085875046, 0.5423030496101118, 0.5412316362940932, 0.5408052140953077, 0.5410181135556563, 0.541855393847831, 0.5432934408213206, 0.5453008788090495, 0.5478397338684117, 0.5508667719141631, 0.554334929375014, 0.5581947562265359, 0.5623958000802861, 0.5668878733562909, 0.5716221611822812, 0.5765521435300607, 0.5816343196775515, 0.5868287354022349, 0.5920993229255266, 0.5974140705137382, 0.6027450430531475, 0.6080682772552504, 0.6133635758580741, 0.618614224690694, 0.6238066551188264, 0.6289300724731325, 0.6339760687908794, 0.6389382357293456, 0.6438117909456189, 0.6485932286629771, 0.6532800026224704, 0.6578702472035894, 0.6623625402387788, 0.666755708987782, 0.67104867891851, 0.6752403633935055, 0.6793295911071208, 0.6833150671687773, 0.6871953630800044, 0.6909689304927871, 0.6946341335385126, 0.6981892946460333, 0.7016327490834766 ], [ 0.5821099489675292, 0.5770648728208082, 0.5723935961129654, 0.5681426017373152, 0.5643552937011844, 0.5610708075134384, 0.5583228522723501, 0.5561386494987846, 0.5545380351809572, 0.5535327864423398, 0.5531262225019695, 0.5533131120033119, 0.5540798971862421, 0.5554052223355798, 0.5572607322893832, 0.5596120890942449, 0.5624201429922704, 0.5656421886595706, 0.5692332388064132, 0.5731472538650003, 0.5773382769724095, 0.5817614360664746, 0.5863737880391683, 0.5911349922522565, 0.5960078114461045, 0.6009584467089559, 0.6059567196052933, 0.610976118915911, 0.6159937319910013, 0.6209900817937775, 0.6259488906505144, 0.630856790823638, 0.6357030005372287, 0.6404789822056187, 0.6451780974953689, 0.6497952716012179, 0.6543266768236932, 0.6587694432680082, 0.6631214022976849, 0.6673808663213678, 0.6715464466109987, 0.675616909180745, 0.6795910673282385, 0.6834677082728609, 0.687245550429693, 0.6909232272309903, 0.6944992930376069, 0.6979722465489838, 0.7013405671927476, 0.7046027602187948 ], [ 0.5919867666842035, 0.587274978538055, 0.5829149381641607, 0.5789490854071089, 0.5754169053080553, 0.5723538769005456, 0.5697904598365736, 0.5677511740538581, 0.566253827976662, 0.5653089458005938, 0.5649194341943766, 0.5650805140001675, 0.5657799247122665, 0.5669983906709652, 0.5687103202119274, 0.5708846944448783, 0.5734860923395937, 0.5764757940722713, 0.5798129050537918, 0.5834554479901254, 0.587361378547922, 0.5914894903745229, 0.5958001860666973, 0.6002561011325026, 0.6048225772857264, 0.60946798910801, 0.6141639340407424, 0.6188852998659458, 0.623610226476382, 0.6283199800623285, 0.6329987581177348, 0.6376334431391538, 0.6422133217728804, 0.6467297846368214, 0.651176020245659, 0.6555467145115869, 0.6598377652659602, 0.6640460192198032, 0.6681690368117479, 0.6722048885301646, 0.6761519845843345, 0.6800089382726505, 0.6837744620814443, 0.6874472944647934, 0.691026154412847, 0.6945097203133086, 0.6978966292378429, 0.7011854926241389, 0.7043749243500219, 0.7074635773784993 ], [ 0.6014653412222765, 0.5970671859693201, 0.5929994026806583, 0.5893007215037022, 0.5860070591960591, 0.5831505908801906, 0.5807588630007041, 0.5788539943099048, 0.5774520112502305, 0.5765623594328684, 0.5761876240715915, 0.5763234798622014, 0.576958876095356, 0.5780764473286603, 0.5796531254238784, 0.5816609167181064, 0.5840677996808631, 0.5868386941920768, 0.5899364535492673, 0.593322833956077, 0.5969594026870866, 0.6008083543307879, 0.6048332134615312, 0.6089994109051362, 0.6132747287835753, 0.6176296163346588, 0.6220373839055122, 0.6264742864921322, 0.6309195108411628, 0.6353550816152234, 0.6397657026499647, 0.6441385491003092, 0.6484630254684958, 0.6527305032854077, 0.6569340507101501, 0.6610681646272416, 0.6651285140422797, 0.6691117017759468, 0.6730150496912798, 0.676836411009346, 0.6805740117152683, 0.6842263216634275, 0.6877919547838057, 0.6912695967883646, 0.6946579579862825, 0.6979557482400588, 0.7011616707231395, 0.7042744309584488, 0.7072927576047898, 0.7102154315887612 ], [ 0.6105438763397353, 0.6064403853587881, 0.602646651297977, 0.5991980082297689, 0.5961271291765106, 0.5934632067454437, 0.5912311763242643, 0.5894510215393611, 0.5881372007662211, 0.5872982291701261, 0.5869364431372983, 0.587047963581667, 0.5876228624409288, 0.5886455239468819, 0.5900951802969081, 0.5919465913713472, 0.5941708310364378, 0.5967361388256558, 0.5996087954356201, 0.6027539831402009, 0.6061365972668865, 0.6097219814940628, 0.6134765671043195, 0.6173684037470857, 0.6213675761596182, 0.6254465072874967, 0.6295801531263614, 0.6337460983147157, 0.6379245640887392, 0.6420983417793119, 0.6462526657386084, 0.6503750395888758, 0.6544550291427821, 0.6584840343907324, 0.6624550517043583, 0.6663624359665062, 0.6702016707892416, 0.6739691533914836, 0.677661999134407, 0.6812778692038666, 0.6848148235249659, 0.6882711997268197, 0.6916455178704809, 0.6949364097268044, 0.6981425706528507, 0.7012627315664692, 0.7042956481528306, 0.7072401042412196, 0.7100949262472784, 0.7128590056631605 ], [ 0.619223241575563, 0.6153962000808627, 0.6118591241897458, 0.6086442449144756, 0.6057812904009369, 0.6032967627320976, 0.6012132572071018, 0.5995488577629012, 0.5983166410336592, 0.5975243176261759, 0.5971740326437772, 0.5972623387817818, 0.5977803452174373, 0.5987140350050073, 0.6000447338039037, 0.6017497044615824, 0.603802835961341, 0.606175391927923, 0.6088367833163778, 0.6117553318371864, 0.6148989946064437, 0.6182360258375681, 0.6217355574656237, 0.625368086827254, 0.6291058654291913, 0.6329231880837816, 0.6367965860655702, 0.6407049313629694, 0.6446294615712742, 0.6485537365692132, 0.6524635389501289, 0.6563467303660908, 0.6601930756151345, 0.6639940455768782, 0.6677426090853021, 0.6714330226110943, 0.6750606252874521, 0.6786216454184616, 0.6821130232138747, 0.6855322531447996, 0.6888772480503215, 0.6921462259764654, 0.6953376197200781, 0.6984500081975488, 0.7014820680709919, 0.704432543544606, 0.7073002318868543, 0.7100839820294902, 0.7127827035270682, 0.7153953832116526 ], [ 0.6275066575014916, 0.6239386512929551, 0.6206416869635406, 0.6176451646449488, 0.6149761416563924, 0.6126586940808799, 0.61071331972558, 0.6091564110295623, 0.6079998251859576, 0.6072505752286318, 0.6069106602200853, 0.6069770453585991, 0.6074417944210695, 0.6082923482492805, 0.6095119347920008, 0.6110800892816142, 0.6129732580264744, 0.6151654563711471, 0.6176289506842246, 0.6203349356015925, 0.623254180819165, 0.6263576260170208, 0.6296169074950949, 0.6330048053276003, 0.6364956048944918, 0.6400653712205333, 0.6436921384499608, 0.6473560199089188, 0.6510392465401091, 0.654726143073491, 0.6584030522001986, 0.662058217340077, 0.6656816344391864, 0.6692648827023987, 0.672800943350424, 0.6762840144727358, 0.6797093289000734, 0.683072980804479, 0.6863717655040803, 0.6896030357488514, 0.6927645766293139, 0.6958545002125801, 0.698871160092108, 0.701813085255045, 0.7046789320333521, 0.7074674524148206, 0.7101774766444854, 0.7128079078374091, 0.715357726237629, 0.7178260007792842 ], [ 0.6353993928196405, 0.6320738375761148, 0.6290012955253899, 0.6262085875169727, 0.6237203504564223, 0.6215584734969469, 0.6197415738468142, 0.6182845364452771, 0.6171981404291141, 0.6164887921816101, 0.6161583799484227, 0.6162042588470541, 0.6166193680912745, 0.6173924750153039, 0.6185085336644919, 0.6199491399135459, 0.6216930607417303, 0.6237168127136546, 0.6259952639569589, 0.6285022348754199, 0.6312110752174863, 0.6340951985683678, 0.6371285594430875, 0.6402860625358392, 0.6435438979878553, 0.646879800506593, 0.6502732336215151, 0.6537055031927327, 0.6571598064622524, 0.6606212244689542, 0.6640766665884511, 0.6675147763801407, 0.6709258079076722, 0.6743014813298565, 0.6776348259163986, 0.6809200178006023, 0.6841522188047943, 0.6873274216214103, 0.6904423055530763, 0.6934941059509834, 0.6964804994776184, 0.6993995063860393, 0.7022494101752589, 0.7050286942655495, 0.70773599474793, 0.7103700678022321, 0.7129297700460705, 0.7154140498661633, 0.7178219476831658, 0.7201526030980206 ], [ 0.642908476524171, 0.6398096324569987, 0.6369466814406695, 0.6343440966603271, 0.6320243227387767, 0.6300072775306803, 0.6283098913346473, 0.6269457041376965, 0.6259245402002267, 0.6252522765221306, 0.6249307176165848, 0.6249575838303237, 0.6253266145938007, 0.6260277819538035, 0.627047604051069, 0.6283695433299871, 0.6299744705790329, 0.6318411736299981, 0.6339468887638671, 0.6362678335029224, 0.638779721311402, 0.6414582414969465, 0.6442794909807962, 0.6472203482669104, 0.6502587836047915, 0.6533741027778162, 0.6565471249927254, 0.6597602978938321, 0.6629977547308278, 0.6662453201700946, 0.6694904721873219, 0.6727222679665645, 0.6759312418221589, 0.6791092829240878, 0.6822495001128813, 0.6853460804016235, 0.6883941469391154, 0.6913896213025533, 0.694329094046285, 0.6972097064950216, 0.7000290458685305, 0.7027850549874005, 0.7054759570569454, 0.7081001953737832, 0.7106563872565208, 0.7131432910723657, 0.715559784914563, 0.7179048552762207, 0.7201775939557229, 0.7223772014061288 ], [ 0.6500424274265859, 0.6471554017937691, 0.6444880594360572, 0.6420627383531784, 0.6398998981890796, 0.6380176796609033, 0.6364314989613753, 0.635153694679005, 0.634193243535341, 0.633555558803846, 0.6332423817557346, 0.6332517721011371, 0.6335781984881819, 0.6342127250820793, 0.6351432854834959, 0.6363550311395033, 0.6378307382532417, 0.6395512552028135, 0.6414959717051767, 0.6436432913575958, 0.6459710906080194, 0.6484571494281781, 0.6510795417338499, 0.6538169766569104, 0.6566490848860644, 0.6595566472600579, 0.6625217654698446, 0.6655279770059905, 0.6685603183223965, 0.6716053415635542, 0.674651091136262, 0.6776870469349198, 0.6807040412019022, 0.6836941558771505, 0.6866506069219022, 0.6895676215463761, 0.6924403135829762, 0.6952645614727463, 0.6980368925159393, 0.7007543762143088, 0.7034145287343321, 0.7060152297725023, 0.7085546524260563, 0.7110312060796664, 0.7134434918201092, 0.7157902694912612, 0.7180704352011751, 0.7202830078875921, 0.7224271234311591, 0.7245020347672828 ], [ 0.6568110025746585, 0.6541217422556843, 0.6516368579652396, 0.6493767468580114, 0.6473600715709814, 0.6456033702638038, 0.6441206990752625, 0.6429233219494149, 0.6420194616222619, 0.6414141234263343, 0.6411090005604155, 0.6411024657731308, 0.6413896502892417, 0.6419626065831252, 0.6428105476054505, 0.6439201516016659, 0.6452759189701134, 0.6468605658545701, 0.6486554384155543, 0.6506409319475556, 0.6527969000951258, 0.6551030412008209, 0.6575392510901704, 0.660085934153071, 0.6627242672200265, 0.6654364132864152, 0.6682056844764498, 0.6710166556683853, 0.6738552318694448, 0.6767086737116124, 0.6795655863429473, 0.682415877537862, 0.685250691081478, 0.6880623214426425, 0.6908441154857284, 0.6935903665311413, 0.6962962055048636, 0.6989574932610124, 0.7015707174569427, 0.7041328966416449, 0.7066414935140085, 0.7090943386418651, 0.7114895653244957, 0.7138255557445287, 0.7161008980991798, 0.718314354030599, 0.7204648353914905, 0.7225513891827047, 0.7245731893784867, 0.7265295343047213 ], [ 0.6632249654578161, 0.6607202415107712, 0.658405473177434, 0.6562992940649098, 0.6544187399341274, 0.6527789031752882, 0.6513926171253237, 0.6502701829937722, 0.6494191510937942, 0.6488441662113134, 0.6485468843700546, 0.6485259651201908, 0.6487771400104667, 0.6492933543537017, 0.6500649760292636, 0.6510800621301542, 0.6523246719569806, 0.6537832133214715, 0.6554388084077325, 0.6572736655346972, 0.659269443987417, 0.6614076005076495, 0.6636697078956918, 0.6660377383051733, 0.6684943060469072, 0.6710228669131227, 0.6736078730732101, 0.676234884391707, 0.6788906385247095, 0.681563083336101, 0.684241376036987, 0.6869158540054755, 0.689577982516871, 0.6922202846420634, 0.6948362583941579, 0.697420285861251, 0.6999675385970018, 0.7024738829882421, 0.7049357887150365, 0.707350242794192, 0.709714671078895, 0.7120268684971528, 0.7142849387678754, 0.7164872438491318, 0.718632362957583, 0.7207190606565113, 0.7227462632438076, 0.7247130424791534, 0.7266186055670879, 0.7284622902533042 ], [ 0.669295874370891, 0.6669632602392291, 0.6648070461616352, 0.6628442635952785, 0.6610904751708698, 0.659559468182042, 0.658262975393373, 0.6572104340857896, 0.6564087932852309, 0.6558623774960025, 0.6555728130565212, 0.6555390205819178, 0.6557572740323663, 0.6562213239548649, 0.6569225796043803, 0.6578503421576697, 0.6589920792539311, 0.6603337297440515, 0.6618600268583509, 0.6635548280057709, 0.6654014400361898, 0.6673829299320171, 0.6694824124183162, 0.6716833077547584, 0.673969564862009, 0.6763258468177699, 0.6787376775323015, 0.6811915500027862, 0.6836749978986231, 0.6861766333169236, 0.6886861543606334, 0.6911943267384267, 0.6936929438851204, 0.6961747701815894, 0.6986334717463618, 0.701063539011884, 0.7034602049215902, 0.7058193621228376, 0.7081374820164479, 0.7104115379840181, 0.7126389345736343, 0.7148174439037922, 0.7169451500608226, 0.7190204018296998, 0.7210417737207526, 0.7230080349408635, 0.7249181257093604, 0.7267711401351523, 0.7285663147495435, 0.7303030217233195 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.5529431300237775, 0.44604827055228274, 0.37206524187290146, 0.2782976511137368, 0.24851023590403679, 0.20354947324851444, 0.22565778818622476, 0.22010702729861042, 0.18298285666651828, 0.18759569052295105, 0.20085305374230503, 0.5573534676805139, 0.1746989242727735, 0.2183196599824182, 0.19460491518089892, 0.10780921745863452, 0.238226229554346, 0.22958363949576532, 0.2149878756112262, 0.2071056563068481, 0.1900202689751575, 0.6469740755856037, 0.19015133660286665, 0.2661866070702672, 0.6136723076924682, 0.5611736382528144, 0.5587024890104212, 0.5705690094297238, 0.6074079073581495 ], "xaxis": "x", "y": [ 0.48189620301127434, 5.221908291933976e-17, 3.735128684771118e-16, 7.3056166976985395e-16, 1.1241013123025867e-12, 1.7863615670411743e-16, 1.6973836005964025e-16, 1.1595431540166796e-16, 1.0432828861936297e-16, 4.456800737861779e-16, 8.984453199534577e-17, 0.0829297685995698, 2.1592734771830426e-16, 6.542767026506807e-15, 0.07742625692514603, 0.1155327867464277, 0.1274855256789842, 0.15223882120817736, 0.18347267930028743, 0.22678575325311892, 0.228572371771065, 0.31394914351403713, 0.6906632911413908, 0.9170842356979847, 0.12633905187249184, 0.20603143492610027, 0.02425943510663835, 0.0, 0.0 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.5529431300237775, 0.44604827055228274, 0.37206524187290146, 0.2782976511137368, 0.24851023590403679, 0.20354947324851444, 0.22565778818622476, 0.22010702729861042, 0.18298285666651828, 0.18759569052295105, 0.20085305374230503, 0.5573534676805139, 0.1746989242727735, 0.2183196599824182, 0.19460491518089892, 0.10780921745863452, 0.238226229554346, 0.22958363949576532, 0.2149878756112262, 0.2071056563068481, 0.1900202689751575, 0.6469740755856037, 0.19015133660286665, 0.2661866070702672, 0.6136723076924682, 0.5611736382528144, 0.5587024890104212, 0.5705690094297238, 0.6074079073581495 ], "xaxis": "x2", "y": [ 0.48189620301127434, 5.221908291933976e-17, 3.735128684771118e-16, 7.3056166976985395e-16, 1.1241013123025867e-12, 1.7863615670411743e-16, 1.6973836005964025e-16, 1.1595431540166796e-16, 1.0432828861936297e-16, 4.456800737861779e-16, 8.984453199534577e-17, 0.0829297685995698, 2.1592734771830426e-16, 6.542767026506807e-15, 0.07742625692514603, 0.1155327867464277, 0.1274855256789842, 0.15223882120817736, 0.18347267930028743, 0.22678575325311892, 0.228572371771065, 0.31394914351403713, 0.6906632911413908, 0.9170842356979847, 0.12633905187249184, 0.20603143492610027, 0.02425943510663835, 0.0, 0.0 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='hartmann6'))" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ 0.8774711218297684, 0.8773388241545723, 0.8776873687022984, 0.8785272425188617, 0.879867164458616, 0.8817139336563138, 0.8840723291457261, 0.8869450851147702, 0.8903329615907836, 0.8942349130778185, 0.8986483264625806, 0.9035692637775181, 0.9089926268974183, 0.9149121803712615, 0.9213204219082987, 0.9282083459418742, 0.9355651704823701, 0.9433780837642686, 0.9516320344033877, 0.9603095621925299, 0.9693906599706086, 0.9788526688764918, 0.9886702288917936, 0.9988153208908271, 1.0092574363569435, 1.0199638947547292, 1.0309003018906544, 1.0420311151749237, 1.0533202626836644, 1.0647317573451132, 1.0762302552012302, 1.087781523153424, 1.0993528007804247, 1.1109130573896864, 1.1224331564966272, 1.133885945068117, 1.1452462854694716, 1.1564910459965958, 1.167599062759268, 1.178551082526891, 1.1893296934498745, 1.1999192484690138, 1.2103057846866858, 1.2204769408903249, 1.2304218746779778, 1.240131180139108, 1.2495968067169922, 1.2588119796660642, 1.2677711223810384, 1.27646978078705 ], [ 0.8784921862217705, 0.8783112368813489, 0.8786093641136768, 0.8793974131223851, 0.8806845728963878, 0.8824782431067647, 0.8847839462545589, 0.8876053033207995, 0.8909440855165761, 0.8948003387659024, 0.8991725513447425, 0.9040578079539243, 0.9094518639596776, 0.9153490965112958, 0.9217423376733683, 0.9286226391033627, 0.9359790310086287, 0.9437983183589936, 0.952064925042018, 0.960760774400034, 0.9698651926981016, 0.9793548372516498, 0.989203672031605, 0.99938302817084, 1.0098617865695305, 1.020606703461704, 1.0315828731022916, 1.042754294304123, 1.05408448847875, 1.0655371111435457, 1.0770765063761196, 1.0886681700893261, 1.100279107139523, 1.1118780837963713, 1.1234357880396308, 1.1349249151742544, 1.146320196749999, 1.1575983886366976, 1.1687382309463117, 1.1797203893218229, 1.1905273844149664, 1.2011435142842524, 1.211554772919484, 1.221748767029662, 1.2317146325036556, 1.2414429514673269, 1.2509256705433334, 1.2601560207141032, 1.2691284390575637, 1.2778384925418844 ], [ 0.8799776456328356, 0.879749560847685, 0.8799980874651857, 0.8807344084701407, 0.8819681781932361, 0.8837074140780353, 0.8859584278329529, 0.888725805832729, 0.8920124409334492, 0.8958196030754936, 0.9001470168972878, 0.9049929005919854, 0.910353924626806, 0.9162250771244635, 0.9225994617933017, 0.9294680796073531, 0.9368196417964865, 0.9446404359005695, 0.9529142385783925, 0.9616222549477842, 0.9707430691759831, 0.9802526094228134, 0.9901241515928483, 1.000328400011276, 1.010833682191794, 1.0216062786535818, 1.0326108828379306, 1.0438111596557869, 1.0551703526380114, 1.06665188390166, 1.0782198981234499, 1.0898397173564394, 1.1014781919668248, 1.1131039489963992, 1.1246875499553028, 1.1362015750382009, 1.1476206513297966, 1.1589214405459267, 1.1700825988039762, 1.1810847178254127, 1.191910254327232, 1.202543452300346, 1.212970261364508, 1.2231782533304536, 1.233156538377211, 1.2428956817707306, 1.2523876217342043, 1.2616255888766696, 1.2706040274560828, 1.2793185186706877 ], [ 0.8819337969925981, 0.8816608903178154, 0.8818615298976099, 0.8825472197897958, 0.883728072081536, 0.885412727009772, 0.8876083068173213, 0.890320403637127, 0.8935530911246106, 0.8973089355871119, 0.9015889713020835, 0.9063926068410826, 0.911717451326542, 0.9175590846201666, 0.9239108224002796, 0.9307635274177111, 0.9381054932392022, 0.9459223948908483, 0.9541972802391823, 0.9629105737267418, 0.97204007733596, 0.9815609748813985, 0.9914458661630309, 1.0016648691671364, 1.0121858264180459, 1.0229746357787945, 1.033995701623115, 1.0452124774932916, 1.0565880538490147, 1.0680857387728868, 1.0796695855994882, 1.0913048357500927, 1.1029582622156284, 1.114598414274426, 1.1261957743477171, 1.1377228429028108, 1.1491541681207134, 1.160466335312822, 1.1716379282630047, 1.1826494717513476, 1.1934833619719596, 1.2041237895515402, 1.2145566583895109, 1.224769502488034, 1.2347514022164043, 1.2444929009684778, 1.2539859228516677, 1.263223691837912, 1.2722006526733989, 1.2809123937584335 ], [ 0.8843660151552843, 0.8840514608240477, 0.8842069042822337, 0.8848441601162609, 0.8859737895095877, 0.8876050482283754, 0.8897458628166787, 0.8924028258320086, 0.8955811872435044, 0.8992848054906815, 0.9035160183901283, 0.9082754128097784, 0.9135615135821733, 0.919370455870429, 0.9256957195825257, 0.9325279767794417, 0.9398550539920542, 0.9476619734769038, 0.9559310264947469, 0.9646418430223879, 0.9737714443040072, 0.9832942880834108, 0.9931823349753717, 1.0034051734702765, 1.013930237706369, 1.0247231370372263, 1.035748094132607, 1.0469684658467266, 1.0583473050467616, 1.0698479159850585, 1.0814343608192343, 1.0930718874615677, 1.1047272643754587, 1.1163690218669273, 1.1279676092010122, 1.1394954819052125, 1.150927134762916, 1.1622390946820789, 1.1734098851726331, 1.1844199714971342, 1.1952516931668846, 1.2058891885267458, 1.2163183147184218, 1.2265265652654982, 1.236502986794458, 1.2462380959108255, 1.2557237969190878, 1.264953300858068, 1.27392104618215, 1.282622621327095 ], [ 0.8872786303023497, 0.886926480570678, 0.8870404169938599, 0.8876325607976346, 0.8887139131622306, 0.8902943263822316, 0.8923824974892249, 0.8949859671257263, 0.8981110901035257, 0.9017629304705033, 0.9059450367251017, 0.9106590858574483, 0.915904444725499, 0.9216777507754546, 0.9279726179391515, 0.9347795189675816, 0.9420858226573886, 0.9498759209823091, 0.9581313801061011, 0.9668310736740585, 0.9759512865845227, 0.9854658022915569, 0.9953460031181606, 1.005561019471923, 1.0160779594252167, 1.0268622360245425, 1.0378779898407458, 1.0490885844123152, 1.0604571379202545, 1.0719470490657241, 1.0835224789940103, 1.0951487617394922, 1.106792729110506, 1.1184229484122614, 1.1300098805037941, 1.1415259706941339, 1.1529456864874643, 1.1642455153532452, 1.1754039336802562, 1.186401355721383, 1.1972200691406762, 1.2078441619515456, 1.218259444226529, 1.2284533669241586, 1.2384149394438322, 1.248134647011709, 1.2576043686565126, 1.2668172963040711, 1.2757678553669867, 1.2844516271052444 ], [ 0.8906747829074162, 0.8902899343530363, 0.8903670056297237, 0.8909184252735839, 0.8919556238348174, 0.89348902003644, 0.8955280229825344, 0.8980810275294605, 0.9011553621673388, 0.9047571353042518, 0.9088909325640985, 0.913559360415628, 0.9187625049702208, 0.9244974371664416, 0.9307578927891358, 0.9375341803286976, 0.9448132774424208, 0.952579028463628, 0.9608123619892193, 0.9694914819599595, 0.9785920211004824, 0.9880871711392561, 0.9979478187323343, 1.0081427203938982, 1.0186387447500747, 1.0294011976538304, 1.0403942284402163, 1.0515812984850714, 1.062925680741987, 1.0743909538956524, 1.0859414575418533, 1.0975426834653992, 1.1091615894481794, 1.1207668329347649, 1.1323289301669077, 1.1438203512932683, 1.1552155637921329, 1.1664910362063772, 1.1776252126447035, 1.188598466513815, 1.1993930399886397, 1.2099929740403654, 1.2203840324979212, 1.2305536226047487, 1.2404907137965426, 1.2501857559050313, 1.2596305976335849, 1.2688184059044074, 1.277743586511585, 1.2864017064017177 ], [ 0.8945562691308487, 0.8941443808489244, 0.8941900747800586, 0.894706087443687, 0.8957042635889276, 0.8971955472091528, 0.8991899812397707, 0.9016966901100829, 0.9047238018490311, 0.9082782539055104, 0.9123654355043023, 0.9169886659596868, 0.922148587990075, 0.927842622556874, 0.934064627090606, 0.9408048133926527, 0.9480498782960953, 0.9557832478122193, 0.9639853448606777, 0.9726338296666025, 0.9817038000959109, 0.9911679649899665, 1.000996816919646, 1.0111588341131648, 1.021620736452079, 1.0323478092513667, 1.0433042938772312, 1.0544538297977288, 1.0657599219610816, 1.0771864027522113, 1.0886978595735297, 1.1002600059089183, 1.1118399830636987, 1.1234065890550546, 1.1349304385035555, 1.1463840620465438, 1.1577419558687982, 1.1689805920598189, 1.180078399433164, 1.1910157228368285, 1.2017747672946084, 1.212339531793511, 1.2226957362741875, 1.2328307444025892, 1.2427334839707507, 1.25239436624566, 1.2618052052106292, 1.2709591373817757, 1.2798505427012463, 1.2884749668834674 ], [ 0.8989233906322928, 0.8984907648586635, 0.8985112622048961, 0.8989979218520037, 0.8999629787070382, 0.9014178490315714, 0.9033731165578713, 0.9058384928760536, 0.9088227104032882, 0.9123332957511661, 0.9163761806905342, 0.9209551530049251, 0.9260712265143005, 0.9317220760724428, 0.9379016806733004, 0.9446002348121527, 0.9518042850126262, 0.959496993307448, 0.9676584357615683, 0.9762658814627082, 0.9852940351670665, 0.9947152524479593, 1.00449974933288, 1.0146158317746636, 1.0250301662628662, 1.035708103529775, 1.0466140551463199, 1.0577119108052861, 1.0689654750586826, 1.0803388980588167, 1.0917970758402749, 1.103306000857744, 1.114833050966116, 1.1263472127549585, 1.1378192415718957, 1.1492217649100593, 1.1605293380421715, 1.1717184612737919, 1.1827675675468956, 1.193656987899723, 1.2043689008822205, 1.2148872706868639, 1.2251977776029972, 1.235287743475189, 1.2451460541330919, 1.2547630802290637, 1.2641305975334054, 1.2732417074607418, 1.2820907584045367, 1.2906732683174247 ], [ 0.9037748204307278, 0.9033282610057013, 0.903330258752046, 0.9037941384930736, 0.9047324882385506, 0.9061571307658016, 0.9080790872627561, 0.9105085084751257, 0.9134545365615386, 0.9169250533617981, 0.9209262802825092, 0.9254622346948672, 0.930534114876208, 0.936139745013227, 0.9422732130002436, 0.9489247637185605, 0.9560809174024203, 0.9637247271355094, 0.9718360884164934, 0.9803920440677938, 0.989367062071262, 0.9987332888134397, 1.0084607937403465, 1.018517825643529, 1.028871098140915, 1.0394861145509982, 1.050327532567066, 1.0613595593683558, 1.0725463602930396, 1.083852460430303, 1.095243118852143, 1.106684659008026, 1.1181447446429242, 1.129592596892678, 1.1409991536824517, 1.1523371764833563, 1.1635813117113565, 1.1747081148206848, 1.1856960448743272, 1.1965254365028644, 1.207178455038917, 1.2176390394729324, 1.2278928368477855, 1.2379271308495876, 1.2477307666685853, 1.2572940736790925, 1.26660878709519, 1.2756679694700184, 1.2844659326964023, 1.2929981610134293 ], [ 0.909107491636705, 0.9086541563984395, 0.9086446899973815, 0.90909267053129, 0.910010986802009, 0.9114117898597731, 0.9133064288302664, 0.915705349539384, 0.9186179259510066, 0.9220521902554016, 0.9260144366819909, 0.9305087064615905, 0.9355362148455105, 0.9410948297012617, 0.9471787160431946, 0.9537782085648785, 0.9608798978193456, 0.9684668630551239, 0.9765189752164298, 0.9850132139568891, 0.9939239708961761, 1.0032233344001211, 1.0128813650267587, 1.0228663762405543, 1.0331452340379839, 1.0436836838204253, 1.0544467052784459, 1.0653988882874041, 1.0765048166754787, 1.0877294434272298, 1.099038440807575, 1.1103985115883581, 1.121777652019964, 1.1331453622168424, 1.144472804193129, 1.1557329112538468, 1.1669004546007002, 1.1779520739575966, 1.1888662790477944, 1.1996234281942548, 1.2102056894572502, 1.2205969887825114, 1.2307829487393527, 1.240750820649152, 1.2504894122628005, 1.2599890126372815, 1.2692413154695328, 1.278239341849615, 1.2869773631733281, 1.295450824789329 ], [ 0.9149165107692585, 0.9144637705893848, 0.9144500522885253, 0.9148891388865686, 0.9157941530421956, 0.9171774855975346, 0.9190507020859893, 0.9214244095678494, 0.9243080611942913, 0.9277096746790511, 0.9316354494822127, 0.9360892923409257, 0.9410723003721042, 0.9465822877950472, 0.9526134491644279, 0.959156216750725, 0.9661973117764927, 0.9737199428540054, 0.9817040892193704, 0.9901268165449552, 0.9989625941510253, 1.0081836023461137, 1.017760032186008, 1.027660386488027, 1.0378517916857266, 1.0483003268056033, 1.0589713703304307, 1.069829959756286, 1.0808411537608777, 1.091970384093955, 1.1031837839516951, 1.114448481446993, 1.1257328501297408, 1.137006712455064, 1.148241495840693, 1.1594103439477348, 1.1704881878243394, 1.1814517825855537, 1.1922797155477567, 1.20295239143312, 1.213451999642164, 1.2237624678433752, 1.2338694053742147, 1.2437600392588741, 1.2534231450587898, 1.2628489742893079, 1.2720291797518377, 1.2809567398325654, 1.289625882588938, 1.298032010270146 ], [ 0.9211950941058255, 0.9207504056618285, 0.9207396871338314, 0.9211768642975352, 0.9220752153039383, 0.9234472759973393, 0.9253047188108344, 0.9276581916613066, 0.9305171011716608, 0.9338893255080288, 0.9377808498590519, 0.9421953358622918, 0.9471336640425569, 0.9525935145646883, 0.9585690585899856, 0.9650508104476483, 0.972025649586629, 0.9794769832738832, 0.9873850025445786, 0.9957269859517329, 1.0044776193175398, 1.0136093154710641, 1.023092530289613, 1.032896078437947, 1.0429874543608109, 1.0533331625734166, 1.0638990576235474, 1.0746506897579662, 1.0855536485762207, 1.096573894660899, 1.10767806870379, 1.1188337688837455, 1.1300097897179302, 1.1411763186590456, 1.1523050897296867, 1.163369496017016, 1.1743446646603974, 1.1852074990136499, 1.195936693053902, 1.2065127230085964, 1.2169178207587503, 1.2271359330045, 1.237152669559166, 1.246955243544367, 1.2565324057293983, 1.2658743748092454, 1.2749727650471923, 1.2838205124129471, 1.292411800114143, 1.3007419842362604 ], [ 0.9279345250813448, 0.9275053190648745, 0.927504778383511, 0.9279468994902419, 0.9288450307705612, 0.9302117564557272, 0.9320587517232317, 0.9343965992392433, 0.9372345573510267, 0.9405802724454049, 0.9444394347137917, 0.9488153897083949, 0.9537087368389948, 0.9591169637340365, 0.9650341712034493, 0.9714509301973308, 0.9783542840130821, 0.9857278797237804, 0.993552194787567, 1.0018048216081448, 1.0104607802127747, 1.019492840577118, 1.0288718464480504, 1.0385670394122546, 1.0485463850302077, 1.0587769027809912, 1.0692249994635357, 1.079856802770143, 1.0906384890281502, 1.1015365973341635, 1.112518321838865, 1.12355177476189, 1.1346062145230313, 1.1456522357129648, 1.156661920031407, 1.1676089494275308, 1.1784686842699201, 1.1892182103843987, 1.1998363592722172, 1.210303705869894, 1.2206025479658271, 1.230716870970585, 1.2406323012453873, 1.2503360506932657, 1.2598168548532223, 1.2690649063284445, 1.2780717850333565, 1.2868303864582449, 1.2953348489179097, 1.3035804805642917 ], [ 0.9351241325183691, 0.9347177156107017, 0.9347343639065964, 0.9351880669243328, 0.9360921557003068, 0.9374591683768939, 0.9393006863375389, 0.9416271344954014, 0.9444475405925139, 0.9477692513438336, 0.9515976089737301, 0.9559356010624099, 0.960783509001977, 0.9661385918619798, 0.9719948465448662, 0.9783428769347253, 0.985169885935375, 0.9924597827495832, 1.0001933820928806, 1.008348666308516, 1.0169010842023383, 1.0258238677718081, 1.035088355939616, 1.0446643205154234, 1.0545202930345852, 1.0646238920447306, 1.0749421495494544, 1.0854418335650113, 1.0960897619298446, 1.1068531012448604, 1.11769964445035, 1.1285980611134205, 1.1395181158308418, 1.1504308519381512, 1.1613087396170745, 1.1721257892256163, 1.1828576320500581, 1.193481571616732, 1.2039766092122823, 1.2143234474128373, 1.2245044753063692, 1.2345037388051259, 1.2443068990653294, 1.2539011816222105, 1.263275318448878, 1.2724194847829804, 1.2813252322450415, 1.2899854195006868, 1.2983941414917917, 1.3065466580748384 ], [ 0.9427512917820903, 0.9423747597994488, 0.9424153620952949, 0.9428870020717912, 0.9438029073051848, 0.9451754804669761, 0.9470161215195224, 0.9493350175651506, 0.9521408986968866, 0.9554407613768396, 0.9592395656426623, 0.9635399191143583, 0.9683417687972142, 0.97364212876207, 0.9794348741557298, 0.9857106266362149, 0.9924567437373674, 0.9996574092546031, 1.0072938091170562, 1.0153443708530863, 1.0237850447767065, 1.0325896092123232, 1.0417299876911228, 1.051176571031539, 1.0608985405274436, 1.0708641899474525, 1.0810412440690007, 1.091397170638694, 1.1018994815894696, 1.1125160185530671, 1.1232152174838603, 1.1339663476451225, 1.1447397212136337, 1.1555068711320846, 1.1662406963411942, 1.1769155749378117, 1.1875074469765963, 1.197993869481473, 1.2083540467471985, 1.2185688392275689, 1.228620754288794, 1.2384939219242903, 1.2481740582464949, 1.257648419244044, 1.2669057469569407, 1.2759362099033627, 1.28473133930164, 1.2932839623774528, 1.3015881338281905, 1.3096390663324795 ], [ 0.9508014522447258, 0.9504616126173424, 0.9505326189845014, 0.9510282110483927, 0.9519614310939207, 0.9533444640080647, 0.9551884502749121, 0.9575032705278054, 0.9602973025237811, 0.9635771544908626, 0.9673473827295244, 0.9716102060984576, 0.976365235115543, 0.9816092375070619, 0.9873359630231863, 0.9935360464575351, 1.0001969991921031, 1.0073032886748816, 1.014836495513864, 1.0227755319479854, 1.031096903995083, 1.0397750015482716, 1.0487824043489233, 1.058090195529471, 1.0676682773131583, 1.0774856851328574, 1.0875108970016263, 1.0977121348007604, 1.1080576536830227, 1.1185160154017717, 1.1290563413240815, 1.139648541270749, 1.1502635151181007, 1.1608733251723065, 1.1714513385217795, 1.1819723397278006, 1.1924126152038848, 1.2027500113883522, 1.2129639693100218, 1.223035538399476, 1.2329473724500066, 1.242683710533633, 1.2522303454789754, 1.26157458226418, 1.270705188401537, 1.279612338116576, 1.288287551866343, 1.2967236325088143, 1.3049145992295306, 1.312855620153842 ], [ 0.9592581940332918, 0.9589614970902871, 0.9590689825395474, 0.9595941527462104, 0.9605497890835742, 0.9619477846391319, 0.9637989522308932, 0.9661128080060367, 0.9688973332290537, 0.972158719692104, 0.9759011073660699, 0.9801263262763895, 0.9848336577461605, 0.990019632302614, 0.9956778815423972, 1.0017990581606542, 1.0083708322308456, 1.0153779640482734, 1.0228024465359689, 1.0306237051609648, 1.0388188412630923, 1.04736290527511, 1.0562291884878698, 1.0653895246790903, 1.0748145952676338, 1.0844742332749024, 1.0943377222256427, 1.104374086387463, 1.1145523687128018, 1.1248418927836352, 1.1352125051687465, 1.1456347949871428, 1.156080288131156, 1.1665216144694865, 1.1769326473149542, 1.1872886153895117, 1.1975661883555184, 1.2077435376457943, 1.2178003747890036, 1.2277179696961857, 1.2374791514730183, 1.2470682942874625, 1.2564712906914273, 1.2656755146044203, 1.2746697759446963, 1.2834442686626137, 1.2919905137049952, 1.3003012982291147, 1.3083706121938101, 1.3161935832858955 ], [ 0.9681033152117019, 0.9678557947418259, 0.9680054079175405, 0.9685653517366181, 0.9695480785056491, 0.9709651244955595, 0.9728269166024087, 0.9751425585377322, 0.9779196002972866, 0.9811637971415137, 0.9848788668589668, 0.9890662564452836, 0.9937249312061492, 0.9988512002140046, 1.004438591421693, 1.0104777871122381, 1.016956625828517, 1.0238601712856081, 1.0311708432979056, 1.0388686016415216, 1.046931171648363, 1.0553343001208275, 1.064052031304174, 1.0730569944291857, 1.0823206961253864, 1.091813812429107, 1.1015064760487228, 1.1113685550626178, 1.1213699194777187, 1.1314806922506047, 1.1416714816192082, 1.1519135919974874, 1.1621792112667688, 1.17244157302083, 1.1826750931162635, 1.192855480667748, 1.202959824337049, 1.2129666553466716, 1.2228559890769175, 1.232609347377183, 1.242209763852019, 1.2516417743945074, 1.260891395162878, 1.2699460900583517, 1.2787947295881132, 1.2874275428057649, 1.2958360638277004, 1.3040130742363174, 1.3119525425066614, 1.3196495614339934 ], [ 0.977316948122744, 0.9771241720408939, 0.9773210934517206, 0.9779205426747506, 0.9789345829989335, 0.9803743381555651, 0.9822498006409411, 0.9845696232993963, 0.9873408986014987, 0.9905689321691089, 0.9942570190854142, 0.9984062331575843, 1.0030152403337569, 1.0080801476468022, 1.0135943980797417, 1.019548719447774, 1.0259311318886952, 1.0327270143500729, 1.0399192263387929, 1.0474882779201462, 1.0554125389916302, 1.063668478264817, 1.0722309228769502, 1.0810733306680815, 1.0901680684592967, 1.09948669084392, 1.1090002149069553, 1.1186793869115492, 1.1284949374123026, 1.1384178215878002, 1.148419441931643, 1.1584718508701237, 1.1685479314094058, 1.1786215545395773, 1.1886677127945096, 1.1986626300320182, 1.2085838481061328, 1.2184102916145398, 1.228122312296163, 1.2377017149200649, 1.2471317666551476, 1.2563971919570074, 1.2654841549731535, 1.2743802313747594, 1.2830743713897863, 1.2915568556572778, 1.2998192453580892, 1.3078543279133112, 1.3156560593838755, 1.3232195045581319 ], [ 0.9868777013945105, 0.9867447331480335, 0.9869936435454735, 0.987636842309758, 0.9886859522974235, 0.9901516382371245, 0.9920434191538958, 0.9943694674783763, 0.9971363996210115, 1.0003490645507984, 1.0040103384457755, 1.0081209345781124, 1.0126792380863365, 1.017681175020103, 1.0231201239054026, 1.0289868760412404, 1.0352696479378514, 1.0419541460825215, 1.0490236810597031, 1.0564593254487242, 1.0642401082066668, 1.0723432375032453, 1.0807443440677034, 1.0894177377589778, 1.098336670980409, 1.1074736034893031, 1.1168004639592275, 1.1262889042951236, 1.135910543203107, 1.1456371959412996, 1.155441087588715, 1.165295047616528, 1.175172684049542, 1.1850485360615242, 1.194898204429761, 1.2046984598466661, 1.2144273296130919, 1.2240641636896044, 1.2335896814399328, 1.2429860006570974, 1.252236650621277, 1.2613265710091204, 1.2702420984725653, 1.2789709426473446, 1.287502153253656, 1.2958260798285224, 1.3039343254920162, 1.311819696008019, 1.3194761452596657, 1.3268987181256353 ], [ 0.9967628225896364, 0.9966941934434445, 0.9969992524449401, 0.997689942507754, 0.9987774031793856, 1.0002718026754913, 1.0021821563154651, 1.004516134708915, 1.0072798665709988, 1.0104777424767692, 1.0141122270188725, 1.0181836875427277, 1.0226902477751472, 1.0276276741591464, 1.0329893015315281, 1.0387660029756836, 1.0449462063851802, 1.0515159577302917, 1.0584590285479207, 1.0657570630934512, 1.0733897591296302, 1.0813350755631617, 1.0895694600125196, 1.0980680897337036, 1.1068051199470208, 1.1157539343199914, 1.1248873930500536, 1.1341780745982948, 1.1435985076483455, 1.1531213903286601, 1.1627197941797456, 1.1723673508010342, 1.1820384195915656, 1.1917082355032744, 1.2013530362407632, 1.2109501688427056, 1.2204781760432963, 1.2299168632146633, 1.2392473470181478, 1.2484520871372202, 1.2575149026272352, 1.2664209745051647, 1.2751568362250656, 1.2837103536567136, 1.2920706961161623, 1.3002282999024535, 1.3081748256820012, 1.3159031109417707, 1.32340711860875, 1.3306818828126512 ], [ 1.0069483757786495, 1.0069480675682232, 1.0073129020469191, 1.0080543168303364, 1.0091829335575762, 1.0107083948536124, 1.0126391902130774, 1.0149824743213138, 1.0177438826138638, 1.0209273500222829, 1.0245349397090493, 1.028566689028347, 1.033020479875725, 1.0378919399737676, 1.0431743805006062, 1.0488587738749362, 1.0549337735945976, 1.0613857759703957, 1.068199021620623, 1.0753557329061312, 1.0828362822459494, 1.0906193855269544, 1.0986823145796802, 1.1070011228395464, 1.1155508787163724, 1.1243059017303398, 1.133239997041645, 1.1423266845485431, 1.1515394192339392, 1.1608517999094203, 1.170237763955138, 1.1796717661012366, 1.1891289397527511, 1.1985852398236192, 1.2080175665087962, 1.2174038698698737, 1.2267232355218582, 1.235955952070806, 1.2450835612523845, 1.254088891953254, 1.2629560794606818, 1.2716705713846999, 1.2802191217385241, 1.288589774657377, 1.2967718391922896, 1.3047558565444253, 1.3125335610155526, 1.320097835848865, 1.327442665027375, 1.3345630819895153 ], [ 1.0174094283349413, 1.0174808658270595, 1.0179085671403327, 1.0187034336123786, 1.019875542193905, 1.0214339886054646, 1.0233867216966965, 1.0257403725512206, 1.0285000829448776, 1.0316693386690283, 1.0352498138510389, 1.0392412326431133, 1.0436412544480536, 1.0484453881989528, 1.0536469401433677, 1.0592369981832972, 1.065204454203349, 1.0715360641266547, 1.0782165438260447, 1.085228697632792, 1.0925535751337, 1.1001706512809728, 1.1080580245480858, 1.1161926278894256, 1.1245504475172305, 1.1331067449047951, 1.141836277887591, 1.1507135172114231, 1.159712855344373, 1.1688088048192484, 1.1779761838105187, 1.1871902870812105, 1.1964270408657711, 1.2056631406840335, 1.2148761715023546, 1.224044710060436, 1.2331484095533887, 1.2421680671873014, 1.2510856754029125, 1.259884457782092, 1.2685488908130937, 1.2770647127965395, 1.2854189212297247, 1.2935997600188687, 1.3015966978459068, 1.3094003989658947, 1.3170026876407346, 1.32439650733117, 1.3315758756775455, 1.338535836204756 ], [ 1.0281202417568471, 1.028266293469541, 1.028759422333463, 1.02960996954769, 1.0308274478214583, 1.0324203916657846, 1.0343962009089933, 1.0367609809071623, 1.0395193837897063, 1.0426744557836738, 1.0462274960999607, 1.0501779329673768, 1.0545232221275294, 1.059258772459058, 1.0643779024273876, 1.0698718298306562, 1.0757296959356775, 1.0819386236822288, 1.0884838082974158, 1.0953486375061883, 1.1025148376274052, 1.1099626412440653, 1.1176709718295343, 1.125617640663752, 1.1337795515252744, 1.142132908935785, 1.1506534261041854, 1.159316529126431, 1.1680975544172867, 1.1769719367682132, 1.1859153858386442, 1.1949040492954213, 1.203914661218537, 1.2129246747881672, 1.2219123786527748, 1.2308569967439527, 1.2397387716407646, 1.2485390318862148, 1.2572402439148522, 1.265826049458036, 1.2742812894517588, 1.2825920155818578, 1.2907454906669098, 1.2987301791055148, 1.3065357286079222, 1.3141529443990054, 1.3215737570260329, 1.328791184837144, 1.3357992921189077, 1.3425931437987288 ], [ 1.039054462095165, 1.039277448299357, 1.0398380460217764, 1.0407460190730984, 1.04201030292447, 1.0436388627914073, 1.0456385467017264, 1.0480149368766665, 1.0507722034567093, 1.0539129651436343, 1.0574381616321387, 1.0613469427143745, 1.065636578634033, 1.0703023956551407, 1.0753377399361839, 1.0807339717318636, 1.0864804907667651, 1.0925647924297053, 1.0989725533135566, 1.1056877436500328, 1.1126927634174433, 1.1199685983620502, 1.127494991870487, 1.1352506285396118, 1.1432133253726533, 1.1513602267408485, 1.1596679995453059, 1.1681130253593515, 1.1766715867017281, 1.185320044971079, 1.1940350079534738, 1.2027934851937698, 1.2115730298960092, 1.2203518663837234, 1.2291090025042317, 1.2378243266949425, 1.2464786897376425, 1.255053971502359, 1.2635331332201303, 1.2719002560204882, 1.280140566623134, 1.2882404511851644, 1.2961874583777597, 1.3039702928033676, 1.3115787998711363, 1.319003943229644, 1.3262377758176371, 1.3332734055395128, 1.3401049565082868, 1.3467275267273173 ], [ 1.0501853064240474, 1.0504870130456618, 1.0511166178617353, 1.0520832960756763, 1.0533953987774975, 1.0550603192385484, 1.057084355698467, 1.0594725737871238, 1.062228672285571, 1.065354856339608, 1.0688517224376601, 1.0727181594131812, 1.0769512694150267, 1.081546312223164, 1.0864966755088146, 1.0917938727086067, 1.0974275691712645, 1.1033856362178212, 1.1096542318016889, 1.1162179056228265, 1.1230597258823256, 1.130161424383836, 1.1375035563976537, 1.1450656715890646, 1.152826492346802, 1.1607640959982573, 1.168856097632235, 1.177079830539735, 1.1854125216051155, 1.1938314593198263, 1.2023141524378707, 1.2108384776397523, 1.2193828149161527, 1.2279261697184367, 1.236448281247186, 1.2449297165551378, 1.2533519504237303, 1.2616974312263707, 1.26994963321245, 1.2780930958320633, 1.2861134508696614, 1.2939974382670822, 1.3017329115934326, 1.3093088341647725, 1.316715266833692, 1.3239433484626029, 1.3309852700683054, 1.33783424358431, 1.3444844661349984, 1.3509310806548247 ], [ 1.0614857426229782, 1.0618674398446324, 1.0625671072071052, 1.0635933255069283, 1.064953859463966, 1.0666555324477753, 1.0687040989705805, 1.0711041178757086, 1.073858829596478, 1.0769700411655263, 1.0804380227762933, 1.0842614196074007, 1.0884371823090873, 1.0929605190347242, 1.0978248712129304, 1.1030219144482276, 1.1085415850685487, 1.114372131966899, 1.1205001925677782, 1.1269108910334749, 1.1335879562434885, 1.14051385665178, 1.1476699488531814, 1.155036636564382, 1.162593536726467, 1.1703196495418904, 1.1781935294436794, 1.1861934542355888, 1.1942975899199049, 1.2024841490295828, 1.2107315405933805, 1.2190185101784006, 1.227324268768522, 1.2356286095447817, 1.243912011929801, 1.2521557325384236, 1.2603418829361381, 1.2684534943411918, 1.2764745696123703, 1.284390123039384, 1.2921862085957474, 1.2998499374249182, 1.3073694854104247, 1.3147340917319905, 1.321934049335466, 1.328960688247672, 1.3358063526520148, 1.3424643726103194, 1.3489290312743119, 1.3551955283797368 ], [ 1.072928660472045, 1.0733911249613886, 1.0741614507844939, 1.0752476233369874, 1.0766568234615788, 1.078395310667691, 1.0804683051788757, 1.082879871511151, 1.0856328066356473, 1.088728536003028, 1.0921670207724627, 1.0959466794732606, 1.10006432703026, 1.1045151336179777, 1.1092926052045524, 1.1143885869452894, 1.1197932898367027, 1.1254953402931893, 1.1314818516065022, 1.1377385156289253, 1.1442497125124274, 1.1509986359527513, 1.1579674311332433, 1.1651373424328026, 1.1724888679418712, 1.180001917902183, 1.1876559743314221, 1.1954302492932474, 1.2033038395113995, 1.2112558752894271, 1.219265661975458, 1.227312812495527, 1.235377369763862, 1.2434399180583562, 1.2514816827196733, 1.2594846177887489, 1.2674314814355596, 1.2753058992486548, 1.2830924156465406, 1.290776533836968, 1.298344744887024, 1.3057845465755946, 1.3130844527810148, 1.3202339942124213, 1.3272237113252643, 1.3340451402730593, 1.3406907927410505, 1.3471541304865462, 1.353429535377837, 1.3595122756822287 ], [ 1.0844870326782552, 1.0850305725169354, 1.0858717185296887, 1.0870178639281325, 1.0884756120248966, 1.0902506678813535, 1.0923477296552688, 1.0947703821224022, 1.0975209951188178, 1.1006006298122042, 1.1040089557344304, 1.1077441813811275, 1.1118030009057989, 1.1161805590188478, 1.1208704356727108, 1.1258646515060917, 1.1311536943742837, 1.136726566647638, 1.1425708523541322, 1.14867280270454, 1.1550174380921343, 1.1615886643162758, 1.1683694005445744, 1.175341716397821, 1.1824869755069183, 1.1897859829369293, 1.1972191339867007, 1.2047665620367731, 1.2124082833213488, 1.2201243367287626, 1.2278949169805002, 1.2357004997928918, 1.243521957882233, 1.2513406669276157, 1.259138600851635, 1.2668984160130579, 1.2746035241244622, 1.2822381539070258, 1.2897874016736504, 1.297237271185906, 1.3045747032613235, 1.3117875957128813, 1.3188648142841723, 1.3257961953019954, 1.332572540805059, 1.3391856069254267, 1.3456280863005723, 1.3518935852808407, 1.3579765966727044, 1.3638724687246104 ], [ 1.0961340649434426, 1.0967585464786087, 1.0976702669935123, 1.0988760343825583, 1.1003818840533368, 1.1021929788398206, 1.1043135093215077, 1.1067465967972059, 1.1094942013729376, 1.1125570377359864, 1.1159345011823847, 1.1196246063340727, 1.1236239407250164, 1.127927635064604, 1.132529351523573, 1.1374212908609238, 1.1425942186523848, 1.1480375103244174, 1.1537392141735547, 1.159686131082861, 1.1658639092546543, 1.1722571519726095, 1.1788495361905846, 1.185623939618477, 1.1925625739303936, 1.1996471217470275, 1.2068588751312888, 1.2141788734711407, 1.2215880387954428, 1.2290673067665197, 1.236597751809245, 1.2441607050618004, 1.251737864063661, 1.259311393324731, 1.2668640151426238, 1.2743790902483796, 1.2818406880609343, 1.2892336465149006, 1.296543621591466, 1.303757126827905, 1.3108615632046743, 1.3178452399114913, 1.3246973865742793, 1.3314081575846444, 1.3379686292141808, 1.344370790218854, 1.3506075266459467, 1.356672601550097, 1.3625606303075097, 1.3682670521910474 ], [ 1.1078433345669534, 1.108548210544717, 1.1095298800831543, 1.110794575756272, 1.1123477774497341, 1.1141941203029495, 1.116337303619269, 1.1187800027762764, 1.1215237863291998, 1.1245690405753102, 1.127914903823196, 1.1315592124799136, 1.1354984608345322, 1.1397277760877322, 1.1442409097731008, 1.1490302462591746, 1.1540868285395685, 1.1594004010377401, 1.164959468698717, 1.170751371232049, 1.176762371025155, 1.1829777529724468, 1.1893819342685599, 1.1959585820921785, 1.202690737055517, 1.2095609403067158, 1.2165513622381352, 1.2236439308637186, 1.2308204580733153, 1.238062762142426, 1.2453527850643917, 1.252672703471593, 1.2600050321174385, 1.267332719096238, 1.2746392321793472, 1.281908635840144, 1.289125658722724, 1.2962757514789898, 1.3033451350515548, 1.3103208396163133, 1.3171907345151859, 1.3239435496079004, 1.3305688885505067, 1.3370572345687624, 1.343399949337506, 1.3495892656038637, 1.3556182742046923, 1.3614809061279995, 1.3671719102573012, 1.3726868274173412 ], [ 1.1195889173645726, 1.1203732558265576, 1.1214238971576465, 1.12274651126399, 1.1243460371861378, 1.1262265987793023, 1.1283914218006634, 1.1308427542304658, 1.1335817917745803, 1.1366086105433864, 1.1399221088638691, 1.1435199600560382, 1.1473985777912565, 1.1515530953605302, 1.1559773598281273, 1.1606639416506614, 1.1656041599258153, 1.1707881230191952, 1.1762047839239673, 1.18184200935238, 1.1876866612541421, 1.1937246892129871, 1.1999412319929372, 1.206320726390255, 1.2128470214926599, 1.2195034964478921, 1.2262731798928483, 1.2331388692831264, 1.2400832484847575, 1.2470890021354784, 1.2541389254471274, 1.261216028296372, 1.2683036326328285, 1.275385462417628, 1.2824457254865316, 1.2894691869074402, 1.2964412335687148, 1.3033479298897466, 1.3101760646871858, 1.3169131893565733, 1.3235476476394696, 1.3300685973400612, 1.3364660244315254, 1.34273075005296, 1.3488544309419455, 1.3548295538774864, 1.3606494247245617, 1.366308152675746, 1.3718006302797396, 1.377122509831851 ], [ 1.1313455028968882, 1.1322080164250352, 1.133326328671408, 1.134705561754269, 1.1363501304284855, 1.1382636651750817, 1.1404489370321904, 1.1429077858017906, 1.145641053356001, 1.148648523792643, 1.151928872143805, 1.1554796232212041, 1.159297121990536, 1.1633765166113337, 1.1677117549723555, 1.172295595210313, 1.1771196303406022, 1.1821743267693394, 1.1874490761146623, 1.1929322594553653, 1.1986113228571968, 1.204472862810747, 1.210502720051359, 1.2166860801232156, 1.2230075789939963, 1.2294514120186548, 1.2360014445860223, 1.242641322853325, 1.2493545830747068, 1.256124758154536, 1.2629354801979593, 1.2697705779850912, 1.27661416845596, 1.2834507414572005, 1.290265237163796, 1.2970431157481042, 1.303770419019166, 1.3104338238979345, 1.3170206877237982, 1.323519085505982, 1.329917839336562, 1.3362065402708758, 1.342375563055042, 1.3484160741396503, 1.3543200334636496, 1.360080190524437, 1.3656900752693195, 1.3711439843521038, 1.3764369632970614, 1.3815647851028738 ], [ 1.1430884981522222, 1.1440275731333216, 1.1452119596753336, 1.1466462488324884, 1.1483343491542928, 1.1502794168300996, 1.1524837878213634, 1.1549489134373387, 1.1576753008744936, 1.1606624602501805, 1.1639088596103622, 1.1674118892792444, 1.1711678367466716, 1.1751718730647673, 1.1794180514589574, 1.1838993185624955, 1.188607538373573, 1.1935335287240145, 1.198667109752406, 1.2039971636048503, 1.2095117043514114, 1.2151979569139746, 1.221042443653681, 1.227031077165366, 1.2331492577706435, 1.2393819741873862, 1.2457139058775952, 1.2521295256317286, 1.258613201031618, 1.2651492935394582, 1.2717222540824082, 1.2783167141365253, 1.2849175714551908, 1.2915100697323894, 1.2980798716364723, 1.3046131247927801, 1.3110965204303104, 1.3175173445371753, 1.3238635214893986, 1.330123650226362, 1.3362870331430303, 1.3423436979530985, 1.3482844128479994, 1.354100695334687, 1.359784815180187, 1.3653297919239353, 1.3707293874407784, 1.3759780940489972, 1.3810711186601758, 1.386004363462105 ], [ 1.1547941199349532, 1.155807845587036, 1.1570564415592488, 1.1585439860682025, 1.1602739007423883, 1.1622488874521784, 1.1644708673002593, 1.1669409230634828, 1.1696592464222546, 1.1726250913120455, 1.1758367346794727, 1.1792914458213655, 1.182985465331877, 1.18691399448657, 1.1910711956604938, 1.1954502041224535, 1.2000431512797631, 1.204841199180413, 1.2098345858233737, 1.2150126805929986, 1.2203640489277046, 1.225876525162439, 1.2315372923519279, 1.2373329677885385, 1.2432496928740044, 1.249273225986283, 1.2553890369978213, 1.2615824021454534, 1.2678384980209674, 1.274142493540188, 1.2804796388531154, 1.286835350273646, 1.2931952904315598, 1.2995454429776225, 1.30587218130199, 1.3121623308539372, 1.3184032247744688, 1.3245827526711744, 1.3306894024740803, 1.3367122954119046, 1.3426412142380033, 1.3484666249143527, 1.3541796920294933, 1.3597722882822663, 1.3652369984078905, 1.3705671179566936, 1.375756647359236, 1.380800281725611, 1.3856933968324041, 1.3904320317485215 ], [ 1.1664394762820134, 1.1675256732409287, 1.1688363724633817, 1.1703751587549986, 1.1721449870347176, 1.1741481254735098, 1.176386100905061, 1.1788596476485433, 1.181568660913148, 1.184512155944734, 1.1876882340223007, 1.1910940563168038, 1.194725826488889, 1.1985787827300864, 1.2026471997518988, 1.2069244010069133, 1.211402781195578, 1.2160738388821297, 1.2209282188215123, 1.2259557633955258, 1.231145572376477, 1.236486070085911, 1.241965078897286, 1.2475698979460128, 1.2532873858577012, 1.2591040462846834, 1.2650061150486853, 1.2709796477212287, 1.2770106065292004, 1.2830849455473607, 1.2891886932286096, 1.295308031422974, 1.3014293701444941, 1.307539417457694, 1.3136252439702445, 1.3196743415323222, 1.3256746758544127, 1.3316147328617907, 1.337483558703885, 1.3432707934291144, 1.3489666984190523, 1.3545621777501022, 1.3600487937144115, 1.365418776786014, 1.3706650303615175, 1.3757811306388277, 1.380761322022123, 1.3856005084568244, 1.3902942411070323, 1.3948387027883768 ], [ 1.178002637277343, 1.1791588855861728, 1.1805293668107386, 1.1821171927049359, 1.1839248723754154, 1.185954261350761, 1.18820651298414, 1.1906820331915087, 1.1933804395455283, 1.19630052573001, 1.1994402323085878, 1.2027966246746573, 1.2063658789292393, 1.2101432762837558, 1.2141232064115546, 1.2182991799823513, 1.2226638504161675, 1.2272090446947608, 1.2319258028782438, 1.2368044257976696, 1.2418345302378502, 1.247005110792038, 1.252304607464054, 1.257720978015691, 1.2632417740073512, 1.268854219457247, 1.2745452910467232, 1.2803017988243945, 1.2861104664067047, 1.2919580097341798, 1.2978312135177899, 1.3037170045960376, 1.3096025215168405, 1.3154751797571438, 1.3213227320941505, 1.3271333237437841, 1.332895541981253, 1.338598460054903, 1.3442316752952768, 1.3497853414058358, 1.3552501949989777, 1.360617576509807, 1.365879445680551, 1.3710283918597346, 1.3760576394029576, 1.380961048495438, 1.3857331117422012, 1.390368946888856, 1.3948642860462974, 1.3992154617959507 ], [ 1.189462695663783, 1.190686362042563, 1.1921141144225815, 1.1937486125622836, 1.195591941128567, 1.1976455643216088, 1.199910282853812, 1.2023861941593088, 1.2050726567197403, 1.2079682593729986, 1.211070796422499, 1.2143772492863703, 1.217883775319773, 1.2215857043137945, 1.2254775430246376, 1.2295529879245268, 1.233804946195959, 1.2382255648210858, 1.2428062674540563, 1.2475377986117624, 1.2524102745822778, 1.2574132403340899, 1.2625357316151398, 1.267766341360137, 1.2730932894780151, 1.2785044950675488, 1.2839876501074468, 1.2895302936850848, 1.295119885863547, 1.3007438803373774, 1.3063897950907117, 1.312045280344511, 1.3176981831605676, 1.323336608155777, 1.328948973869026, 1.334524064412833, 1.340051076130768, 1.345519659067834, 1.3509199531434586, 1.3562426189936836, 1.361478863520143, 1.3666204602474046, 1.3716597646468078, 1.3765897246336922, 1.3814038864858282, 1.386096396464067, 1.3906619984416362, 1.3950960278670732, 1.3993944023974092, 1.4035536095438577 ], [ 1.2007998176701449, 1.2020880819692632, 1.2035704296823204, 1.2052490901178587, 1.207125745167284, 1.2092014891176979, 1.2114767908060817, 1.2139514588778193, 1.2166246109146208, 1.2194946471756531, 1.2225592296494214, 1.225815267043616, 1.2292589062472417, 1.2328855306864674, 1.236689765867606, 1.240665492261284, 1.2448058655370349, 1.2491033440123032, 1.253549723039691, 1.2581361759247875, 1.2628533008496794, 1.267691173175406, 1.2726394024137413, 1.2776871930952065, 1.2828234087167545, 1.2880366379287005, 1.2933152621154596, 1.2986475235365624, 1.3040215932222803, 1.3094256378590328, 1.3148478849528216, 1.3202766856203274, 1.3257005744270782, 1.331108325765885, 1.3364890063469343, 1.3418320234495242, 1.3471271686647055, 1.3523646569351087, 1.357535160772433, 1.3626298396032417, 1.367640364258564, 1.37255893668204, 1.377378304984107, 1.3820917740157628, 1.3866932116746673, 1.3911770511884949, 1.39553828964608, 1.3997724830658607, 1.4038757383039904, 1.4078447021119138 ], [ 1.2119952844815458, 1.2133451652425777, 1.2148792912116608, 1.2165994830991271, 1.2185070418169806, 1.220602713121345, 1.2228866545572374, 1.2253584053657571, 1.228016860010993, 1.230860245961392, 1.2338861063170556, 1.2370912878119074, 1.2404719346382662, 1.244023488444211, 1.2477406947442993, 1.2516176158657073, 1.255647650428296, 1.2598235592339395, 1.2641374973204322, 1.2685810518233982, 1.2731452851879188, 1.2778207831839505, 1.2825977071060934, 1.2874658494820783, 1.292414692573868, 1.2974334689321498, 1.302511223257171, 1.30763687482645, 1.3127992797706995, 1.3179872925123681, 1.323189825724449, 1.3283959082193766, 1.333594740236298, 1.338775745659519, 1.3439286207677803, 1.3490433791838843, 1.3541103927635052, 1.3591204282310947, 1.3640646794372235, 1.3689347951752602, 1.3737229025543565, 1.3784216259804805, 1.3830241018459606, 1.3875239890714668, 1.3919154756815035, 1.396193281625828, 1.4003526580840353, 1.404389383510305, 1.4082997566886921, 1.4120805870782547 ], [ 1.2230315247878656, 1.2244399038502427, 1.2260228725195925, 1.227781864904669, 1.2297178227261405, 1.23183116444179, 1.2341217566140086, 1.236588888087211, 1.2392312475361644, 1.2420469049229566, 1.2450332973609137, 1.2481872198279622, 1.2515048211010777, 1.2549816052003526, 1.2586124385372663, 1.2623915628614635, 1.266312613995726, 1.2703686462443757, 1.274552162258869, 1.2788551480486823, 1.283269112738997, 1.2877851326004888, 1.2923938988128685, 1.2970857683734005, 1.301850817525121, 1.3066788970566603, 1.31155968881652, 1.3164827627879832, 1.3214376340863976, 1.3264138192663872, 1.3314008913618474, 1.3363885331248038, 1.3413665879787435, 1.346325108256903, 1.3512544003538554, 1.3561450664796268, 1.3609880427663996, 1.3657746335393213, 1.3704965416221182, 1.3751458946055506, 1.3797152670606032, 1.384197698728053, 1.3885867087617054, 1.3928763061427605, 1.3970609964181022, 1.401135784945246, 1.4050961768512766, 1.4089381739322737, 1.412658268734365, 1.4162534360669297 ], [ 1.2338921388491013, 1.2353557849524404, 1.2369845640825732, 1.2387795457463073, 1.2407413341309885, 1.2428700413782294, 1.2451652630238432, 1.2476260560884425, 1.250250920293655, 1.2530377828560817, 1.2559839872750282, 1.2590862864805963, 1.2623408406477379, 1.2657432199105711, 1.2692884121318757, 1.2729708357979121, 1.2767843580208469, 1.2807223175431088, 1.2847775525524852, 1.288942433035904, 1.2932088973262057, 1.2975684924307895, 1.3020124176757737, 1.30653157115503, 1.3111165984399897, 1.3157579429849176, 1.320445897651584, 1.325170656778091, 1.329922368227139, 1.3346911848690217, 1.339467314982879, 1.3442410710952468, 1.349002916816375, 1.3537435112811411, 1.3584537508511678, 1.3631248077873805, 1.3677481656554646, 1.3723156512808514, 1.3768194631225883, 1.3812521959868447, 1.3856068620495714, 1.3898769082031284, 1.3940562297838515, 1.398139180774803, 1.4021205806112986, 1.40599571774522, 1.4097603501479696, 1.4134107029510012, 1.416943463437743, 1.4203557736108308 ], [ 1.2445619145207032, 1.246077505860647, 1.2477489873127094, 1.249577085659391, 1.2515620889758814, 1.2537038237318465, 1.2560016339711004, 1.2584543629790823, 1.2610603378365246, 1.2638173572358482, 1.266722682903731, 1.269773034930128, 1.2729645912515801, 1.276292991475887, 1.2797533451686156, 1.2833402446509001, 1.2870477822843893, 1.2908695721460575, 1.294798775923896, 1.298828132796742, 1.3029499929992416, 1.307156354717417, 1.3114389039126544, 1.315789056632978, 1.3201980033408658, 1.3246567547663375, 1.3291561887831236, 1.3336870978040007, 1.3382402361979324, 1.342806367246795, 1.3473763091815083, 1.3519409798662165, 1.3564914397333854, 1.3610189326115387, 1.3655149241299007, 1.369971137429046, 1.3743795859534798, 1.378732603149127, 1.3830228689355928, 1.387243432868924, 1.3913877339544065, 1.395449617110388, 1.39942334632232, 1.4033036145611362, 1.4070855505709954, 1.4107647226585216, 1.4143371396385338, 1.4177992491099562, 1.4211479332505184, 1.4243805023296547 ], [ 1.2550268356858374, 1.256590981387856, 1.258302000871748, 1.2601602998412675, 1.2621658713505508, 1.2643182764276275, 1.2666166266787087, 1.269059569216278, 1.2716452742416984, 1.274371425591846, 1.2772352145296901, 1.280233337021038, 1.2833619946947168, 1.286616899632587, 1.289993283079752, 1.2934859081066028, 1.2970890861933955, 1.3007966976475276, 1.304602215704247, 1.3084987341054093, 1.3124789978985159, 1.316535437151785, 1.3206602032399828, 1.324845207322193, 1.329082160606006, 1.3333626159739507, 1.3376780105363935, 1.3420197086717935, 1.3463790451186315, 1.350747367694088, 1.355116079231431, 1.3594766783509817, 1.3638207987076068, 1.3681402463896317, 1.3724270351801824, 1.376673419430158, 1.3808719243323557, 1.3850153734273043, 1.389096913212915, 1.393110034770259, 1.3970485923576588, 1.4009068189622156, 1.4046793388332863, 1.4083611770540163, 1.4119477662364295, 1.4154349504506534, 1.4188189865208103, 1.4220965428384753, 1.425264695859083, 1.428320924458042 ], [ 1.265274083546728, 1.2668833440275562, 1.268630699791414, 1.2705162567803945, 1.2725397337072006, 1.2747004459088185, 1.2769972910775136, 1.2794287371528252, 1.281992812645104, 1.2846870996412734, 1.2875087297169716, 1.2904543829465482, 1.293520290164436, 1.2967022385886127, 1.299995580870895, 1.3033952475901815, 1.3068957631551807, 1.3104912650335254, 1.3141755261755683, 1.3179419804550316, 1.321783750905526, 1.325693680492786, 1.3296643651282245, 1.333688188600222, 1.337757359076164, 1.3418639468109295, 1.3459999226861694, 1.350157197199878, 1.354327659526727, 1.3585032162767094, 1.362675829592266, 1.366837554241715, 1.3709805733893858, 1.375097232749125, 1.3791800728577495, 1.3832218592375078, 1.387215610250983, 1.3911546224876083, 1.3950324935569791, 1.3988431422001328, 1.4025808256650065, 1.4062401543260832, 1.4098161035597023, 1.4133040229163416, 1.4166996426574787, 1.4199990777488816, 1.4231988294226838, 1.4262957844381754, 1.4292872121858695, 1.4321707597905458 ], [ 1.2752920312333673, 1.2769429374239196, 1.2787234078658247, 1.2806332696434584, 1.2826719873255232, 1.284838649771969, 1.2871319587109014, 1.2895502193163262, 1.2920913330042538, 1.294752792646099, 1.2975316803748063, 1.3004246681310767, 1.3034280210650664, 1.30653760387368, 1.309748890115827, 1.3130569745087846, 1.316456588168674, 1.3199421167180734, 1.3235076211447099, 1.3271468612577269, 1.330853321552811, 1.3346202392653288, 1.3384406343618855, 1.3423073411958355, 1.3462130415319593, 1.3501502986295968, 1.3541115920626097, 1.3580893529485505, 1.3620759992586418, 1.3660639708839402, 1.3700457641421429, 1.3740139654229206, 1.3779612836868347, 1.3818805815548483, 1.3857649047493603, 1.389607509675254, 1.3934018889585273, 1.397141794790749, 1.4008212599588914, 1.4044346164717703, 1.4079765117253071, 1.411441922179056, 1.4148261645450804, 1.4181249045172433, 1.4213341630933802, 1.4244503205653547, 1.427470118271335, 1.4303906582214876, 1.4332094007225291, 1.435924160137516 ], [ 1.285070232194256, 1.286759303602531, 1.288569663787936, 1.2905008813943724, 1.2925521865005873, 1.294722460118174, 1.297010225350281, 1.2994136403948722, 1.301930493563537, 1.3045582004695033, 1.3072938035177581, 1.3101339738064044, 1.3130750155217183, 1.3161128728804188, 1.319243139642731, 1.322461071188028, 1.3257615991133775, 1.3291393482836185, 1.3325886562307108, 1.336103594770263, 1.3396779936750747, 1.34330546621937, 1.3469794363836536, 1.3506931674895384, 1.3544397920157485, 1.3582123423327337, 1.3620037820824777, 1.365807037923737, 1.3696150313602353, 1.373420710371179, 1.377217080568916, 1.3809972356184375, 1.3847543866666614, 1.3884818905463334, 1.3921732765392214, 1.395822271505827, 1.3994228232131762, 1.4029691217185476, 1.4064556186940003, 1.4098770446039546, 1.4132284236757995, 1.4165050866299693, 1.4197026811621125, 1.4228171801940956, 1.4258448879333046, 1.4287824438002805, 1.4316268243031058, 1.4343753429529429, 1.437025648328612, 1.4395757204093775 ], [ 1.2945994028410657, 1.2963231644374764, 1.2981602015092972, 1.300109844126782, 1.3021711069368331, 1.3043426811047156, 1.3066229278064965, 1.30900987341484, 1.3115012065083311, 1.314094276818278, 1.3167860962092783, 1.319573341769444, 1.3224523610643217, 1.3254191795856112, 1.328469510401677, 1.3315987659924644, 1.3348020722269642, 1.3380742844169224, 1.3414100053567286, 1.344803605236331, 1.3482492432919355, 1.3517408910385802, 1.3552723569095755, 1.3588373121102317, 1.3624293174786666, 1.366041851133188, 1.3696683366764826, 1.3733021717193319, 1.3769367564833686, 1.3805655222415738, 1.3841819593587226, 1.3877796447001143, 1.3913522681870094, 1.394893658289918, 1.3983978062667832, 1.4018588889712733, 1.4052712900768738, 1.40862961958432, 1.4119287315031375, 1.4151637396219445, 1.4183300313060365, 1.421423279284731, 1.4244394514138239, 1.4273748184207442, 1.4302259596604765, 1.4329897669293172, 1.4356634464007858, 1.4382445187628947, 1.4407308176492206, 1.4431204864669227 ], [ 1.3038713999252907, 1.3056263978378246, 1.3074869253097363, 1.30945209309952, 1.3115207188399731, 1.3136913211907288, 1.3159621154320913, 1.3183310106070085, 1.3207956083051577, 1.3233532031692472, 1.3260007851876883, 1.3287350438210825, 1.3315523739924702, 1.3344488839528124, 1.3374204050151717, 1.340462503132239, 1.3435704922737999, 1.3467394495424623, 1.3499642319483178, 1.3532394947460613, 1.3565597112211165, 1.3599191937955788, 1.363312116309483, 1.366732537318893, 1.3701744242395741, 1.373631678153786, 1.377098159088663, 1.3805677115674524, 1.3840341902303448, 1.387491485319745, 1.3909335478257545, 1.3943544140914346, 1.3977482296841968, 1.4011092723491365, 1.404431973872529, 1.4077109406979305, 1.4109409731543665, 1.4141170831740215, 1.4172345103967061, 1.4202887365787644, 1.4232754982448994, 1.4261907975424, 1.429030911277729, 1.4317923981351766, 1.434472104096064, 1.4370671660943855, 1.4395750139606527, 1.4419933707197976, 1.4443202513215345, 1.4465539598919186 ] ], "zauto": true, "zmax": 1.4465539598919186, "zmin": -1.4465539598919186 }, { "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.022319581210036108, 0.020166899137440016, 0.01817237145131169, 0.016343183752697433, 0.014687076773651393, 0.013212582516932032, 0.01192893441419585, 0.010845341410460287, 0.009969355900359416, 0.009304392344633894, 0.00884712661877744, 0.008586158879794189, 0.008503161848116227, 0.00857643007853037, 0.008785265022534227, 0.009113312993389844, 0.00954988497029796, 0.010089416840254306, 0.010729836146117252, 0.011470661544829433, 0.012311438169426337, 0.01325081437328035, 0.014286299862328482, 0.0154145617027575, 0.016632027370664933, 0.01793555961836234, 0.0193230181452211, 0.020793597905436844, 0.02234790921946538, 0.023987824592930623, 0.025716153614247884, 0.027536220641148985, 0.02945141583487434, 0.03146477597123015, 0.03357863368639393, 0.03579435641963856, 0.03811218140426183, 0.04053114161969761, 0.04304906998026129, 0.0456626650191292, 0.04836760033910886, 0.051158661307953886, 0.054029894993488765, 0.056974762400411216, 0.059986285128249286, 0.06305718127832403, 0.06617998763835448, 0.06934716683795852, 0.0725511993439144, 0.07578466093525045 ], [ 0.02172994151949575, 0.019591203846173175, 0.017612336658126712, 0.015800046448524525, 0.01416151700062732, 0.012704701179644144, 0.011438298068650942, 0.010371079408586484, 0.009510258768351954, 0.00885893938230391, 0.008413410638141897, 0.008161788027259127, 0.008085310178938182, 0.008162149280184319, 0.008371982328143512, 0.008699303389869961, 0.00913452473461612, 0.009673143591792879, 0.010313859571852237, 0.01105653914726902, 0.011900644984135442, 0.012844406751741604, 0.013884722866445319, 0.015017601005918143, 0.016238875242632768, 0.017544953415571975, 0.018933412710234767, 0.020403342309228904, 0.02195540770583596, 0.02359166914713024, 0.025315221268851575, 0.02712973317144967, 0.029038963363549632, 0.03104630918919161, 0.03315443161990858, 0.0353649776991212, 0.03767840682835675, 0.04009391472040541, 0.042609440676701596, 0.045221739693140986, 0.04792650007319728, 0.05071848876344047, 0.05359170952631897, 0.05653956248512509, 0.05955499691664741, 0.06263065207572557, 0.06575898316203858, 0.0689323712695211, 0.07214321735851804, 0.07538402105910992 ], [ 0.021338810412658622, 0.019216160290978265, 0.01725450366775867, 0.015459885061157159, 0.013838685073324041, 0.012397971524509067, 0.01114557955320646, 0.010089582915711095, 0.009236828175811057, 0.008590516171418214, 0.00814753067614391, 0.007896971091228774, 0.007821248209093535, 0.007899696953672077, 0.008113007578798067, 0.008446436575748383, 0.008890816563111916, 0.009441653726738197, 0.010097234913972306, 0.010856662409058613, 0.011718419190218382, 0.012679698926237545, 0.013736445670058862, 0.014883884929888517, 0.016117280959313193, 0.017432686243337735, 0.018827517726797457, 0.020300871691683195, 0.02185355880980135, 0.023487893842798147, 0.025207306778015182, 0.027015854372042788, 0.02891770727764534, 0.03091667400281766, 0.03301580438085807, 0.035217096120998485, 0.03752131106452421, 0.0399278945891285, 0.04243498286532859, 0.0450394782505293, 0.047737172277307734, 0.050522897395703176, 0.05339069177661206, 0.05633396516119239, 0.05934565730736168, 0.062418383668193564, 0.06554456538482016, 0.06871654248252618, 0.07192667039861897, 0.07516740075486446 ], [ 0.021135979916857957, 0.0190294494830334, 0.01708409559572953, 0.015305093924615527, 0.013697765637762977, 0.012268001677525092, 0.011022497332963182, 0.009968482569880317, 0.00911260921003355, 0.008458884224547224, 0.008006145095976235, 0.00774632441651439, 0.00766487424432065, 0.007743619722876621, 0.00796470347286512, 0.008313688728043682, 0.008780718949712505, 0.009359876820952498, 0.010047589320623768, 0.010840959836930626, 0.011736591667319964, 0.012730099227761403, 0.013816234372022658, 0.014989420146136467, 0.016244456244943622, 0.017577194808280638, 0.018985045717542056, 0.020467235901254394, 0.02202480630287922, 0.02366037676422683, 0.02537773942553477, 0.027181354600625002, 0.029075821795947865, 0.03106538692056843, 0.03315352949854457, 0.03534265491215159, 0.03763389942838377, 0.04002704198780495, 0.042520507423845284, 0.04511144094688889, 0.04779583267264019, 0.050568672616798385, 0.05342411978033333, 0.056355672747064746, 0.05935633292369658, 0.06241875477230577, 0.06553537994827692, 0.0686985541505297, 0.07190062679285167, 0.07513403442875738 ], [ 0.021108785395719504, 0.01901626380888105, 0.017083905259426633, 0.015315839284096949, 0.013716133947360517, 0.012289314451664531, 0.011040805311913796, 0.009977023905024546, 0.00910478398258904, 0.00842976761063257, 0.007954242007073509, 0.007674890824731383, 0.007582077732886212, 0.007661328532526172, 0.00789641041718131, 0.008272371018970931, 0.008777206203277871, 0.009401922764765307, 0.010139596098898144, 0.010984200091759537, 0.011929742615399556, 0.012969909563672345, 0.014098180093799784, 0.01530825807014162, 0.01659463745793781, 0.017953141544454668, 0.01938131913458926, 0.02087863037445617, 0.02244640269319097, 0.024087577919168796, 0.025806300600087352, 0.027607412767967694, 0.029495922413896442, 0.03147650456549145, 0.03355307894918061, 0.035728490652098405, 0.03800430324915057, 0.04038069986321372, 0.042856477835047264, 0.04542911731640649, 0.048094902591153656, 0.05084907625152263, 0.05368600938121278, 0.056599374637416745, 0.05958231286046875, 0.0626275871366755, 0.06572772089893907, 0.06887511863874855, 0.0720621691876137, 0.07528133241534336 ], [ 0.02124315662568944, 0.019160668144633575, 0.017236041991696063, 0.015472273101667882, 0.013872115041817568, 0.012438713723181864, 0.011176294230319786, 0.010090681587450395, 0.009189320806618575, 0.00848041454945985, 0.0079709693972299, 0.007664094086408832, 0.007556682045008151, 0.0076389005968931665, 0.007895989218880755, 0.008311328202867799, 0.008869103589306029, 0.009555610379775077, 0.010359303987468966, 0.011270232661167846, 0.01227942918400771, 0.013378565659749068, 0.014559934364377289, 0.015816681409087752, 0.01714316905793139, 0.018535341684430696, 0.019990994564074386, 0.0215098802110458, 0.023093625721683945, 0.024745470469459876, 0.02646986152335809, 0.028271961189182453, 0.030157126403888252, 0.03213041489926121, 0.0341961610957358, 0.03635764910902594, 0.03861689433121599, 0.040974531307541265, 0.04342979557342785, 0.0459805812084046, 0.048623553732123424, 0.05135429873224998, 0.05416748922158784, 0.05705705820641567, 0.06001636657094764, 0.06303835967138118, 0.06611570874858186, 0.06924093534549101, 0.07240651839493409, 0.07560498462058896 ], [ 0.021524805637063403, 0.019447051920369416, 0.017523679688263, 0.015756593432883687, 0.014147345436669779, 0.01269789737572626, 0.011411562033055002, 0.010293961472621434, 0.009353684454938263, 0.008602138737252088, 0.008051994520749277, 0.007713929182504443, 0.007592436932416299, 0.007682780110784372, 0.007971127558325778, 0.008437834374734814, 0.009061693167607746, 0.009823007711187628, 0.010704852403182141, 0.011693055785983777, 0.012775687611703996, 0.013942568074677386, 0.015185006703011464, 0.016495779652117782, 0.017869263792752575, 0.01930162220708889, 0.020790946290637168, 0.022337286496078506, 0.02394253682022892, 0.02561017074591931, 0.027344853453297107, 0.029151973326456856, 0.03103714377369247, 0.03300572485725348, 0.03506240542429433, 0.03721087335845913, 0.03945358729006503, 0.0417916501373554, 0.044224774853208276, 0.046751326412125385, 0.04936842126278953, 0.05207206551741297, 0.054857315139510116, 0.057718444428035746, 0.06064911244961201, 0.06364252024221162, 0.06669155432178382, 0.06978891416011763, 0.07292722287340234, 0.07609912143756663 ], [ 0.021940353451784276, 0.019861416127574593, 0.01793248661173248, 0.01615457250287045, 0.014528319543048578, 0.013054903202415489, 0.011737209261387138, 0.01058119008843819, 0.009597102502463041, 0.008800026962061749, 0.008208702560199366, 0.007841721203546653, 0.007711335237451148, 0.007817575066761827, 0.008146585099386502, 0.00867442675507641, 0.009373446800750695, 0.010217425386421071, 0.011184009770733049, 0.012255049840328639, 0.013415987840016153, 0.014655102596979958, 0.015962956177373276, 0.017332107422801793, 0.018757029478050937, 0.02023413075717035, 0.02176178378283833, 0.02334028971476974, 0.02497173642204526, 0.0266597381107193, 0.028409070345491467, 0.030225232788986423, 0.03211398168649994, 0.03408087525999997, 0.036130869337065746, 0.03826799017202257, 0.040495099187719694, 0.04281375263075079, 0.045224149564037155, 0.04772515507562911, 0.050314382168717954, 0.05298831507868131, 0.055742458013741523, 0.05857149575274304, 0.06146945547286627, 0.06442986211580408, 0.06744588221775609, 0.07051045327398953, 0.07361639734817119, 0.0767565188080135 ], [ 0.02247823561078331, 0.020392315202101014, 0.01845154960774064, 0.016656381576593673, 0.015007002551135431, 0.01350436745264779, 0.012151579528679004, 0.01095556905690254, 0.00992878710412944, 0.009090231999565036, 0.00846453177043981, 0.008077527811241087, 0.007948138701837283, 0.008079831937670852, 0.008457504297078698, 0.009052206469660422, 0.009829796857056573, 0.010758002016954819, 0.011809722145361077, 0.012963478586999689, 0.014202589255211949, 0.01551412367080649, 0.016888080260783245, 0.01831687408449969, 0.019795074125504932, 0.021319287755583373, 0.022888094849226798, 0.0245019566502224, 0.026163052613799535, 0.027875026278823063, 0.029642645262553207, 0.03147139835181686, 0.033367063134913784, 0.035335280650421574, 0.037381170223736826, 0.03950900990578069, 0.04172199792348291, 0.04402210035851075, 0.04640998147123999, 0.04888500661826475, 0.051445303873286635, 0.054087869045147875, 0.05680869927453298, 0.05960294214510441, 0.06246504966020551, 0.06538892902723509, 0.06836808462550772, 0.07139574762023203, 0.07446499134980278, 0.07756883185812243 ], [ 0.02312929619537669, 0.02103137885777644, 0.019073753160141028, 0.01725673471115004, 0.0155806233316333, 0.014046827910625592, 0.012659409211044421, 0.011426980023873644, 0.010364673887158856, 0.009495407837845842, 0.008848906356875507, 0.008456522070177592, 0.008341448124876041, 0.008508374342333641, 0.00893981916441807, 0.009602058379154706, 0.010455609349170596, 0.011463533612005505, 0.012595174568567326, 0.01382656874769979, 0.01513942653225391, 0.016519874596927525, 0.017957443012589263, 0.0194443910661207, 0.020975310463419907, 0.02254690394378249, 0.024157843063489615, 0.025808630755567347, 0.02750142028154343, 0.02923976740432724, 0.03102831439230914, 0.03287242108289467, 0.0347777687088782, 0.036749966402734216, 0.038794188981432255, 0.040914869176308995, 0.04311545964148069, 0.04539827156296454, 0.04776438890772183, 0.05021365123218088, 0.05274469393898127, 0.055355032912786574, 0.058041180259094105, 0.06079877893593131, 0.06362274590415712, 0.06650741558865801, 0.06944667761035025, 0.07243410470484427, 0.0754630683781529, 0.07852684113023621 ], [ 0.023887050237644262, 0.02177342894557241, 0.01979568160056558, 0.01795449289720117, 0.016250881534919666, 0.014687415302301578, 0.013269854762274625, 0.012009152071998945, 0.010923467849849114, 0.01003931649024297, 0.009390127646044443, 0.009010158382794394, 0.008923646043144728, 0.009134007008107962, 0.0096207685545377, 0.010346624574822584, 0.011268749854106364, 0.012347423767872567, 0.013549805710164618, 0.01485029704042489, 0.01622945240674195, 0.01767264271041635, 0.019168954216904042, 0.02071042259969391, 0.022291547831078295, 0.023908995548720304, 0.025561395015728353, 0.027249163331253882, 0.028974308632286096, 0.03074018721635021, 0.032551208721219256, 0.0344124984475435, 0.036329535860554436, 0.03830779311256955, 0.04035239756970221, 0.0424678388074284, 0.04465773467251321, 0.04692466415864825, 0.0492700682041179, 0.05169421396137256, 0.05419621409578819, 0.056774090367797354, 0.05942486998409931, 0.062144703643847006, 0.06492899546450227, 0.06777253667534933, 0.07066963680831359, 0.07361424787637388, 0.0766000785766226, 0.07962069682562883 ], [ 0.024747644903989757, 0.022616259953595067, 0.020617163160204267, 0.01875190930210974, 0.017022824070026678, 0.01543427913988555, 0.013994364801299296, 0.012716842470979532, 0.011622954176280047, 0.010742079395033325, 0.010109479428393192, 0.009759344665339403, 0.009713760670649345, 0.009972894971726595, 0.01051337720360647, 0.01129601261369286, 0.012276809491801936, 0.0134151186387178, 0.014677189905199497, 0.01603654489794108, 0.017472966239903527, 0.018971213796918355, 0.020519931403925728, 0.022110852701738862, 0.023738268694090906, 0.0253986775605844, 0.02709053789173202, 0.028814062049718564, 0.030571005692202127, 0.03236442833678242, 0.03419841632023364, 0.036077772587220634, 0.03800768684060038, 0.03999340454378463, 0.042039914383689314, 0.04415167177885551, 0.04633237181516483, 0.048584779663105704, 0.05091062104945493, 0.05331053048728962, 0.055784051202663915, 0.05832967824365883, 0.060944935089889275, 0.06362647400388156, 0.06637019109865107, 0.0691713483394984, 0.07202469618428159, 0.07492459208548514, 0.07786511148571033, 0.08084014915271162 ], [ 0.025709576561889127, 0.02356017082183149, 0.021540579266140537, 0.019653679598015335, 0.017903602060227643, 0.016297019717767706, 0.014844760329230159, 0.01356355162358579, 0.012477373989312864, 0.011617334575621217, 0.011018447257567876, 0.01071215131017033, 0.010716044606897719, 0.011026079331470534, 0.011616624497439176, 0.012448206660816532, 0.013477441864001773, 0.014664212012413491, 0.015974873815109418, 0.017382694697991207, 0.018867022310034766, 0.020412148303883985, 0.02200629425847943, 0.023640839803623873, 0.025309777372054722, 0.02700933341542377, 0.0287376913046585, 0.030494761681935333, 0.03228196114018035, 0.03410197545993272, 0.03595849736492253, 0.037855939913674606, 0.03979913470827791, 0.04179302890096436, 0.04384239668050315, 0.04595157999421474, 0.048124270395867474, 0.05036333989488689, 0.05267072428529609, 0.0550473582997792, 0.057493158523754924, 0.06000704756702786, 0.06258701158498649, 0.06523018277635109, 0.06793293877557699, 0.07069101168017745, 0.07349960058559932, 0.07635348275420066, 0.07924711977803671, 0.08217475621369055 ], [ 0.02677323025884735, 0.024607334427479276, 0.02257004542097026, 0.020665923123258285, 0.018901253590841566, 0.017285294695895573, 0.015831724750371614, 0.014560024062204885, 0.013496178522651598, 0.012671639277497657, 0.012119266010024691, 0.011865861673445522, 0.0119234175852696, 0.012283677064440963, 0.012919600106799347, 0.013792609188749494, 0.01486106604026464, 0.016086328657276078, 0.01743556915882818, 0.018882284733130444, 0.020405685168537944, 0.02198974926882105, 0.023622331887010004, 0.02529444902773205, 0.02699974667277924, 0.028734113147198714, 0.03049538521666651, 0.032283103628182326, 0.03409828469512795, 0.03594318648819289, 0.03782105929361806, 0.03973587927991457, 0.04169207127104247, 0.04369423095915359, 0.04574685887151514, 0.04785411823601485, 0.05001962704715783, 0.05224629169811004, 0.054536186104528726, 0.05689047682898198, 0.05930939172650585, 0.061792227330307654, 0.0643373886911526, 0.06694245465826354, 0.06960426153636314, 0.07231899851561573, 0.07508230907601705, 0.07788939355528952, 0.08073510910791039, 0.08361406427624488 ], [ 0.027940308953694266, 0.025761083401740426, 0.02371055124823024, 0.02179518767599174, 0.020023604971708315, 0.018407684182767517, 0.01696375989120536, 0.015713516584765497, 0.014683954057707626, 0.013905494083303415, 0.013407426199693248, 0.0132110077812776, 0.013322577472964019, 0.01373029589795186, 0.01440651763200919, 0.01531424833318801, 0.0164141555581765, 0.01766956129095441, 0.0190488768280914, 0.02052617014883441, 0.022080760227771598, 0.02369647077508652, 0.02536087367437354, 0.027064650139351484, 0.0288010920447821, 0.030565721019305773, 0.032355989572895046, 0.03417102974018057, 0.03601142181787547, 0.037878964649781646, 0.039776437609204164, 0.04170735196154715, 0.043675695146846945, 0.04568567547475251, 0.047741476767111705, 0.049847032795327054, 0.052005830265225955, 0.05422074701569136, 0.05649392946327957, 0.05882671056126177, 0.06121956699214232, 0.06367211222181046, 0.06618312054412216, 0.06875057636924967, 0.07137174270869776, 0.07404324298341354, 0.07676115080168282, 0.07952108309139314, 0.08231829281201267, 0.08514775832343872 ], [ 0.029213217432842113, 0.027025183751313155, 0.02496713473091952, 0.023047551678511316, 0.02127735428522102, 0.019670850349659527, 0.018246577528010385, 0.017027654940821684, 0.01604104086463614, 0.015315000565537404, 0.014874464558070455, 0.014735077266919293, 0.01489816233331058, 0.015349170169960636, 0.0160604878979483, 0.0169970185840453, 0.01812189802999285, 0.01940057486269643, 0.0208028999271398, 0.022303722509437716, 0.02388265655818164, 0.025523512380347745, 0.02721367297309849, 0.028943537452101084, 0.030706065223517782, 0.032496412627150494, 0.03431163839964362, 0.03615045226162019, 0.038012984912603694, 0.03990056396065229, 0.04181548691692292, 0.04376078836083475, 0.04574000320640893, 0.047756931422234576, 0.049815411516652995, 0.051919110688321335, 0.05407133897098008, 0.056274893261218054, 0.05853193513747845, 0.06084390418193742, 0.06321146638778173, 0.06563449539012185, 0.0681120828381591, 0.07064257328896806, 0.0732236185417838, 0.0758522462881833, 0.07852493823998526, 0.08123771341421457, 0.0839862129072527, 0.08676578319621013 ], [ 0.03059446119607895, 0.028403160639941083, 0.026344156180696115, 0.024427885180548985, 0.022667384179812743, 0.02107900266533945, 0.019682860138112913, 0.018502665263155405, 0.01756439480428006, 0.016893406522777037, 0.016510062016735765, 0.016424885021447466, 0.016635124516276526, 0.01712439168377386, 0.017865565574754556, 0.018825532421982205, 0.019969836947495805, 0.021266023850651183, 0.022685432382411583, 0.02420379873229513, 0.02580115511837061, 0.027461410785859452, 0.02917184758527211, 0.030922643228868223, 0.03270646213491455, 0.03451811596475762, 0.036354279890122784, 0.03821324638133379, 0.04009469989753943, 0.0419994999731871, 0.04392946505095967, 0.0458871540503404, 0.04787564656115369, 0.04989832544555832, 0.05195866742324107, 0.05406004793471717, 0.05620556635602112, 0.05839789667495905, 0.060639167272761293, 0.06293087173353556, 0.06527381085466534, 0.06766806444148651, 0.07011299017063168, 0.07260724587178737, 0.07514883102515746, 0.07773514307626421, 0.08036304427398665, 0.08302893507012189, 0.08572883060254145, 0.08845843734954383 ], [ 0.03208611235280128, 0.029897730097090548, 0.027844724293542265, 0.02593931479188152, 0.02419633070324056, 0.022633657742383025, 0.021272312633024332, 0.020135803739742233, 0.019248413745675548, 0.01863223021925129, 0.01830326191914981, 0.01826768370190212, 0.018519651773138475, 0.019041689803869378, 0.019807480884523283, 0.020785863023694992, 0.021944633154539248, 0.023253308065669276, 0.02468467646025015, 0.02621539371306346, 0.027825980397290673, 0.029500524085730947, 0.031226277216610056, 0.03299325324002675, 0.03479386367024328, 0.036622605358490344, 0.03847579147413154, 0.04035131408170456, 0.04224842604768056, 0.04416753246279093, 0.04610998520823761, 0.04807787781976137, 0.05007384090396593, 0.05210084076354962, 0.054161985472076714, 0.056260343394756426, 0.05839877915274245, 0.06057981140784604, 0.06280549577382132, 0.06507733482567411, 0.06739621575957745, 0.06976237490913167, 0.07217538716719969, 0.07463417747301233, 0.07713705093448532, 0.0796817378619487, 0.08226544995948519, 0.08488494410371406, 0.08753659047893224, 0.09021644227457341 ], [ 0.03368938176679622, 0.03151037426274844, 0.02947030645051354, 0.027582912866953337, 0.025864406659666196, 0.024333657272541245, 0.023011922867214867, 0.021921864242877797, 0.021085620233403254, 0.020521966808626287, 0.02024302873367037, 0.020251478005854768, 0.020539263382620424, 0.021088419667651438, 0.02187363746075745, 0.022865626009621994, 0.024034252458895372, 0.02535085136246117, 0.02678958121637473, 0.028328005186327995, 0.02994716383836531, 0.03163137365815267, 0.03336791102319523, 0.03514667293111656, 0.036959857579125836, 0.03880167894706026, 0.04066811448347874, 0.042556678643919495, 0.04446621364025537, 0.04639668994153571, 0.04834901138524269, 0.050324822372629106, 0.052326317046078395, 0.054356052308841094, 0.05641676791344946, 0.05851121757830012, 0.060642015225189014, 0.06281150005089656, 0.06502162337351247, 0.06727385916812362, 0.0695691390666227, 0.07190781147036372, 0.07428962341518767, 0.0767137230091694, 0.07917867967436028, 0.08168251907499659, 0.08422276949122938, 0.08679651646690711, 0.0894004627799586, 0.09203099110851674 ], [ 0.03540432024701605, 0.03324107736954878, 0.031220530565975377, 0.02935760237775829, 0.027669448130245192, 0.026175385377603444, 0.02489635097788096, 0.023853691400218747, 0.02306719265973187, 0.022552501312286175, 0.02231843668212002, 0.022364966597122532, 0.022682568416767284, 0.0232532410625018, 0.024052809385266286, 0.025053759364335383, 0.02622785589543442, 0.02754810051396884, 0.02898993106936062, 0.030531786400190518, 0.032155235240522856, 0.03384485265188543, 0.03558797643065984, 0.037374424551753306, 0.03919621588145898, 0.04104731147204495, 0.04292337973987391, 0.044821582134988776, 0.046740373656971985, 0.04867931278700399, 0.050638876834142484, 0.05262028056691966, 0.05462529786001382, 0.05665608766270546, 0.058715026750268205, 0.060804552395613706, 0.06292701830299118, 0.06508456693090765, 0.0672790207810348, 0.06951179444618359, 0.07178382830131774, 0.07409554378951233, 0.07644681938738401, 0.07883698559821108, 0.08126483675768444, 0.08372865706537812, 0.08622625807154993, 0.08875502483473305, 0.09131196809106339, 0.09389378000643786 ], [ 0.037229654112455726, 0.03508821886630839, 0.03309316201201538, 0.03126024393867522, 0.02960713107493754, 0.028153116173248813, 0.02691837764870201, 0.025922659628836078, 0.02518337541017448, 0.024713354251001372, 0.024518700997750213, 0.02459737353898642, 0.024938959426408103, 0.02552575163159381, 0.02633478219047909, 0.02734022062047515, 0.02851557938786567, 0.029835394383175114, 0.03127629773142935, 0.03281756623224771, 0.034441293562467855, 0.03613233032995811, 0.0378781019940253, 0.03966837632986053, 0.041495021013942215, 0.0433517706157595, 0.04523400944167306, 0.047138569913584956, 0.049063543323247555, 0.05100809928251572, 0.052972310909184576, 0.05495698405506302, 0.05696349026694942, 0.058993604413598605, 0.06104934886743736, 0.06313284673087532, 0.06524618683122531, 0.06739130310347345, 0.06956987059272296, 0.07178321971251062, 0.07403226967385314, 0.0763174812342557, 0.07863882817889803, 0.08099578629630967, 0.08338733808854137, 0.08581199108357816, 0.08826780740000477, 0.09075244214176474, 0.09326318825405512, 0.09579702562462235 ], [ 0.03916274505154282, 0.037048603089978406, 0.03508422183332984, 0.033285856473926734, 0.031671296606477946, 0.03025942551657723, 0.02906935754575515, 0.028119099386036593, 0.027423802036691675, 0.02699384625236571, 0.026833169854323526, 0.02693829390079688, 0.027298359734704916, 0.02789618636218156, 0.028710047794004507, 0.029715710136208644, 0.03088830698367585, 0.03220379768538468, 0.03363993566887035, 0.0351768007681159, 0.036797005110703856, 0.03848568579602753, 0.040230375690269715, 0.04202081544555217, 0.043848745152399296, 0.045707696006659214, 0.04759279076594556, 0.04950055513624554, 0.05142873900786521, 0.05337614538231865, 0.055342464984865176, 0.05732811532458288, 0.05933408394706474, 0.06136177657556108, 0.06341287160824095, 0.06548918295597507, 0.06759253344091617, 0.06972464094123942, 0.07188701919750118, 0.07408089474513144, 0.076307140866772, 0.07856622883301614, 0.08085819607905655, 0.0831826303990817, 0.08553866876665454, 0.08792500903165575, 0.09033993251174968, 0.09278133538632173, 0.09524676680110783, 0.09773347168423353 ], [ 0.04119965318364618, 0.03911759436018871, 0.03718820417059208, 0.03542791954010818, 0.033854327681352235, 0.03248561385661833, 0.031339642234559345, 0.03043266420292541, 0.029777756917684518, 0.029383228432937857, 0.029251327599905525, 0.029377595638564707, 0.029751056834025534, 0.030355212801693034, 0.031169586862845246, 0.03217146131973083, 0.033337484869533834, 0.034644949286511025, 0.03607266959330694, 0.037601500028126886, 0.039214565952027575, 0.040897300348227764, 0.042637360489370446, 0.044424480017989175, 0.04625029231947861, 0.04810814597646471, 0.049992922751046213, 0.051900862188861585, 0.05382939350603367, 0.05577697393221424, 0.0577429323844926, 0.0597273177006777, 0.06173075130236446, 0.06375428485309022, 0.06579926407904782, 0.06786720034827559, 0.06995965182251027, 0.07207811600147425, 0.07422393529272174, 0.076398216898439, 0.07860176785992956, 0.08083504559149725, 0.08309812371564589, 0.08539067252412504, 0.08771195296716822, 0.0900608227393792, 0.0924357527968301, 0.09483485250785109, 0.09725590160313999, 0.09969638713671976 ], [ 0.043335276537837884, 0.041289322783374036, 0.039398350957292036, 0.03767871091973342, 0.03614753188859939, 0.034822103813637234, 0.03371895296222771, 0.03285263901141082, 0.0322343913960434, 0.0318707987560829, 0.03176282260527261, 0.03190537975795525, 0.03228761567117818, 0.03289381428169758, 0.033704735591974365, 0.034699102982882084, 0.0358549899947267, 0.037150945717842075, 0.03856679866777879, 0.04008415563607792, 0.04168665312282715, 0.04336003026039139, 0.045092085419414715, 0.046872564502280396, 0.048693014008775744, 0.050546619508476755, 0.052428041081779536, 0.05433325134241192, 0.05625937815225059, 0.058204552365898665, 0.060167760291640573, 0.06214870056809516, 0.06414764550708482, 0.06616530742248596, 0.06820271091110527, 0.07026107239010462, 0.07234168838336857, 0.07444583407355013, 0.07657467350645877, 0.07872918257436116, 0.08091008554835984, 0.08311780551603228, 0.0853524286474182, 0.08761368179560804, 0.08990092256657184, 0.09221314068769304, 0.09454896927843578, 0.09690670448406867, 0.09928433187195997, 0.1016795580013423 ], [ 0.04556353935944877, 0.04355692813013564, 0.04170694798327551, 0.0400296436893426, 0.03854149949915354, 0.03725879175347701, 0.036196695754687945, 0.035368193897419804, 0.03478290366925073, 0.034446010229288934, 0.03435751634102526, 0.034511985561032445, 0.034898852450301054, 0.035503240745307967, 0.03630711998046109, 0.03729058329046661, 0.03843305019836934, 0.03971426371114392, 0.041115026612356456, 0.04261768206554987, 0.04420637885801395, 0.04586717427749988, 0.04758802539321538, 0.04935871008243258, 0.051170707913036996, 0.053017060899907695, 0.05489222633124445, 0.05679192840902607, 0.058713011996809394, 0.06065329981942798, 0.06261145354359138, 0.06458683890528387, 0.06657939515468608, 0.06858950936083895, 0.07061789642123324, 0.07266548587127163, 0.07473331673695557, 0.07682244170139065, 0.07893384176170477, 0.08106835235241068, 0.08322660162776074, 0.0854089612585993, 0.08761550973890551, 0.08984600784269903, 0.09209988554780854, 0.09437623946845089, 0.09667383962600971, 0.09899114424287536, 0.10132632116779468, 0.10367727452800296 ], [ 0.04787760444207244, 0.04591281476964203, 0.044105615263566336, 0.04247157873744283, 0.04102641920217155, 0.03978534471988136, 0.038762219094476955, 0.03796858902736292, 0.03741268785353387, 0.037098570579749204, 0.03702554498765795, 0.037188024825462976, 0.03757584832886782, 0.03817500556018115, 0.038968638014860356, 0.03993813989471874, 0.04106420574873387, 0.04232771714649895, 0.04371041798599859, 0.04519537556090494, 0.04676725452691771, 0.04841244393216749, 0.0501190783451367, 0.05187698831899751, 0.053677607234379664, 0.05551385355069545, 0.057380000881397816, 0.05927154341789684, 0.061185060926315184, 0.06311808551389596, 0.0650689712610298, 0.06703676733586211, 0.06902109510853402, 0.0710220298817555, 0.07303998802774786, 0.07507562048521098, 0.07712971367360809, 0.0792030989004196, 0.08129657126357943, 0.08341081889253213, 0.0855463631433832, 0.08770351008789104, 0.08988231333608954, 0.09208254793156245, 0.09430369477749911, 0.0965449348073671, 0.09880515191814003, 0.10108294354304477, 0.10337663765663752, 0.10568431497498804 ], [ 0.05027008949537907, 0.048348897700352826, 0.04658557379769256, 0.04499509915574824, 0.04359234417975855, 0.04239144213885084, 0.04140501877242135, 0.04064333694054496, 0.040113455760743114, 0.039818531217387335, 0.039757384856592366, 0.03992443084423091, 0.04030998570402191, 0.040900909985096906, 0.04168147231146459, 0.04263430118765744, 0.043741300603841425, 0.04498444054447222, 0.046346376532298346, 0.04781088991888063, 0.04936316607062328, 0.05098994031597714, 0.05267954441792573, 0.054421883271277574, 0.05620836578821638, 0.05803180773407633, 0.059886318797051294, 0.06176718188265599, 0.06367072955084839, 0.0655942204898482, 0.06753571770631922, 0.06949396947202295, 0.07146829380197206, 0.07345846719288392, 0.07546461840836818, 0.07748712817966659, 0.07952653574698478, 0.08158345316792731, 0.0836584882545766, 0.08575217687007035, 0.08786492512879326, 0.0899969618166303, 0.09214830109705863, 0.09431871531379062, 0.09650771745804934, 0.09871455265307112, 0.10093819783027098, 0.10317736863778075, 0.1054305325352303, 0.10769592698785169 ], [ 0.05273327301792462, 0.05085682662425009, 0.049137878702786256, 0.04759074091774111, 0.04622940803793136, 0.0450669663181648, 0.044114896401925174, 0.04338232820719484, 0.04287533413519466, 0.04259636345085642, 0.04254391480710794, 0.04271251177722361, 0.043092994198857745, 0.04367308138460049, 0.0444381194586041, 0.045371906049139404, 0.0464574926832489, 0.04767789080086372, 0.049016639881951776, 0.05045822592121387, 0.051988359918543704, 0.053594138034504475, 0.05526410919968208, 0.05698827490389227, 0.05875804211834152, 0.06056614565027163, 0.0624065517970186, 0.06427435148061435, 0.06616564825382024, 0.06807744461568083, 0.07000752880919987, 0.07195436352463373, 0.07391697753947059, 0.0758948611594476, 0.07788786628215402, 0.07989611191245387, 0.08191989596777517, 0.08395961419057218, 0.0860156869201913, 0.08808849436291481, 0.09017832084192262, 0.0922853083182657, 0.09440941926292122, 0.09655040874300927, 0.09870780537603749, 0.10088090061662834, 0.10306874567998021, 0.105270155281746, 0.1074837172879007, 0.10970780732132684 ], [ 0.05525928027716827, 0.05342818085212438, 0.0517536147066028, 0.05024917965914391, 0.04892799412017974, 0.04780214790150147, 0.046882078492834496, 0.04617592594613044, 0.04568893981155913, 0.045423020750442536, 0.04537647108926096, 0.045544001178265466, 0.045916997514331676, 0.04648401542365915, 0.04723142603213455, 0.04814413242998032, 0.049206274415527, 0.050401859791344816, 0.051715284871890095, 0.053131730397079864, 0.05463743700384848, 0.05621987540605969, 0.057867831237069386, 0.05957142486932432, 0.0613220842881794, 0.06311248574244709, 0.06493647340179379, 0.0667889661582163, 0.06866585723551195, 0.07056391044063791, 0.07248065562750358, 0.07441428513019614, 0.07636355243852097, 0.07832767412646101, 0.0803062359168338, 0.08229910370671012, 0.08430634034144102, 0.08632812887969651, 0.08836470302054081, 0.09041628525926067, 0.09248303320215245, 0.09456499430764972, 0.09666206914163712, 0.09877398304897943, 0.10090026596258941, 0.10304023990521834, 0.10519301359598215, 0.10735748345896794, 0.10953234024842681, 0.11171608045508963 ], [ 0.057840244273128553, 0.0560546322498477, 0.05442405407104492, 0.052961376584199395, 0.051678863657588996, 0.05058767301433631, 0.04969730259371831, 0.049015034070262246, 0.04854543515065689, 0.04828998673989759, 0.04824689198642253, 0.04841110132688999, 0.04877455555027998, 0.04932661583830782, 0.050054624443152784, 0.05094452786659587, 0.05198149697251399, 0.05315049191520518, 0.05443673847285343, 0.055826100987265224, 0.05730535207515736, 0.05886234917350965, 0.06048613303958571, 0.06216696465508453, 0.06389631592140026, 0.06566682724685673, 0.0674722424605228, 0.06930732895514945, 0.07116778882036078, 0.073050165057206, 0.07495174574625071, 0.07687046820319508, 0.0788048246120676, 0.08075377029250064, 0.0827166355618154, 0.08469304203696322, 0.08668282414303183, 0.08868595652409324, 0.09070248797090583, 0.09273248237870096, 0.09477596712522159, 0.09683288911687675, 0.098903078595592, 0.10098622063859496, 0.1030818341263468, 0.10518925780807419, 0.1073076429667179, 0.10943595208049968, 0.11157296279997696, 0.11371727650867706 ], [ 0.0604684397948921, 0.058728076469421894, 0.057140779488817614, 0.05571868811787315, 0.05447324879226435, 0.05341475855199187, 0.05255187627355651, 0.0518911434903335, 0.05143656603839298, 0.05118930931472982, 0.051147551100982215, 0.05130651703444166, 0.05165869858900154, 0.0521942279114043, 0.052901364269087786, 0.05376703730888874, 0.054777393542948895, 0.05591830214875756, 0.05717579033502984, 0.05853639322610914, 0.05998741562488228, 0.061517111781741005, 0.0631147943260981, 0.06477088546629904, 0.06647692337517655, 0.06822553525357851, 0.0700103866082659, 0.07182611426366305, 0.07366824881686265, 0.07553313075844993, 0.07741782333987415, 0.07932002443763439, 0.08123797908962942, 0.08317039399630576, 0.08511635503113976, 0.087075248642515, 0.08904668791401049, 0.09103044395510952, 0.09302638320093791, 0.09503441109756933, 0.09705442253427114, 0.09908625925644034, 0.10112967435628457, 0.10318430379805817, 0.10524964479731214, 0.10732504074520856, 0.1094096722551363, 0.11150255381386898, 0.1136025354463174, 0.11570830875277233 ], [ 0.06313639091660563, 0.061440734578294895, 0.05989577576688029, 0.05851294445408925, 0.05730291632309764, 0.05627520137041543, 0.05543771388200331, 0.05479635991266144, 0.05435468463963633, 0.054113621778682106, 0.05407137914518279, 0.054223479006186015, 0.05456295200497375, 0.05508066359308861, 0.055765736561905366, 0.05660602541359636, 0.0575885985970216, 0.058700191525699046, 0.05992760400290093, 0.061258027272677915, 0.06267929615563626, 0.06418006939623709, 0.0657499461626883, 0.06737952894735595, 0.06906044355587765, 0.07078532612698867, 0.07254778576659164, 0.0743423498242364, 0.07616439734823599, 0.0780100849636718, 0.07987626837518118, 0.08176042190015684, 0.083660557856036, 0.085575147213742, 0.08750304264419671, 0.08944340488575576, 0.09139563321490608, 0.0933593006856653, 0.09533409469729341, 0.09731976334444849, 0.09931606789290495, 0.10132274160635446, 0.10333945502703147, 0.10536578768847989, 0.10740120611733339, 0.10944504786714475, 0.11149651122555373, 0.11355465014990392, 0.11561837391845765, 0.11768645093582394 ], [ 0.06583695368428208, 0.06418522819419238, 0.06268149457026358, 0.06133650204787073, 0.060160207455550084, 0.059161406323511044, 0.05834735523429861, 0.057723416338629104, 0.05729275897499082, 0.05705615218798751, 0.0570118747560724, 0.057155756767623196, 0.05748135108075745, 0.057980217446676086, 0.05864228993332612, 0.05945629176241285, 0.060410161335464174, 0.061491458075690855, 0.06268772478597544, 0.0639867923495693, 0.06537702101431664, 0.06684747913790648, 0.06838806475675097, 0.06998957781226775, 0.0716437517418356, 0.07334325291669824, 0.07508165554294934, 0.07685339848983078, 0.07865372931426043, 0.08047863965453397, 0.08232479523785434, 0.08418946300371345, 0.08607043727584711, 0.08796596649282633, 0.0898746816988929, 0.09179552777125319, 0.09372769819053282, 0.09567057402555552, 0.09762366768618357, 0.09958657188768573, 0.10155891416068809, 0.1035403171298844, 0.10553036467198329, 0.1075285739512475, 0.10953437322224782, 0.11154708518767825, 0.1135659156075896, 0.11558994677812115, 0.11761813543487888, 0.11964931458962239 ], [ 0.0685633765147775, 0.06695463162178063, 0.06549089646280139, 0.06418227466882186, 0.0630380581325774, 0.062066397293582286, 0.0612739696686867, 0.06066567291952496, 0.060244371241675795, 0.060010722242467875, 0.059963105245150916, 0.06009766173836365, 0.060408446222380084, 0.06088767341893502, 0.06152603810876206, 0.06231307839334669, 0.06323755243995048, 0.0642878021246235, 0.0654520830529031, 0.06671884760509174, 0.06807697453926596, 0.06951594437837481, 0.07102596390200999, 0.07259804556087675, 0.07422404878515658, 0.07589669032165648, 0.07760953026529226, 0.0793569396437012, 0.08113405448730067, 0.08293672041118844, 0.08476143092812241, 0.08660526203607567, 0.08846580508316444, 0.09034109949336923, 0.09222956661738864, 0.09412994573070173, 0.09604123301393332, 0.09796262420042588, 0.09989346144826144, 0.10183318487885884, 0.10378128911483707, 0.10573728504316574, 0.10770066692430917, 0.10967088486529225, 0.11164732257591534, 0.11362928023542801, 0.1156159622140836, 0.11760646932260285, 0.1195997952042008, 0.12159482643973783 ], [ 0.07130934115243974, 0.06974250449420191, 0.0683174741723112, 0.06704374706969958, 0.06593000381803385, 0.06498381465174105, 0.0642113483369298, 0.06361710643666177, 0.06320370664254325, 0.06297173710898372, 0.06291969840190666, 0.0630440413697052, 0.06333929929960508, 0.063798302949828, 0.06441245922791107, 0.06517206967071465, 0.06606666390314644, 0.0670853255158615, 0.06821699233476093, 0.06945071866865603, 0.07077589273541354, 0.07218240731348857, 0.07366078534426845, 0.07520226463969025, 0.07679884716393916, 0.0784433188018063, 0.08012924536876768, 0.08185095010024962, 0.08360347716914053, 0.08538254505299422, 0.0871844928875123, 0.0890062223424172, 0.09084513705501962, 0.09269908125273241, 0.09456627887661773, 0.0964452742676347, 0.09833487527914751, 0.1002340995184072, 0.1021421242841947, 0.10405824064806167, 0.10598181201664277, 0.10791223740828149, 0.10984891957732615, 0.1117912380236446, 0.11373852683415595, 0.11569005721910118, 0.11764502453009744, 0.1196025394814167, 0.12156162324171904, 0.12352120602158065 ], [ 0.07406898706137308, 0.07254290821013648, 0.07115526057742803, 0.06991497474084447, 0.06883017196217836, 0.06790790198412514, 0.06715388710744434, 0.06657229135631595, 0.0661655343298878, 0.06593416754401239, 0.06587682655891376, 0.06599026543384785, 0.06626947207876682, 0.06670785524428435, 0.06729748753805895, 0.06802938493924032, 0.06889380217445025, 0.0698805247867914, 0.07097914209400955, 0.07217928961355605, 0.0734708540920191, 0.07484413837475122, 0.07628998661450925, 0.07779987261634402, 0.079365955503311, 0.08098110752300083, 0.08263891889609212, 0.08433368432761254, 0.08606037531924006, 0.08781460185667041, 0.08959256647971482, 0.09139101322168565, 0.09320717345145317, 0.09503871027196283, 0.09688366281852752, 0.0987403915492473, 0.10060752541646674, 0.10248391164095938, 0.10436856866935594, 0.10626064277221468, 0.10815936862928961, 0.11006403414603724, 0.11197394964936414, 0.11388842152006591, 0.11580673023490008, 0.11772811271344287, 0.11965174879503297, 0.1215767516103973, 0.12350216156197028, 0.12542694358705145 ], [ 0.07683692199026408, 0.07535040913783207, 0.07399882445206894, 0.07279057267881141, 0.07173326482734181, 0.07083348442652584, 0.07009656207213912, 0.06952637414382386, 0.06912518192021533, 0.06889352562464456, 0.06883018413909534, 0.06893220562062231, 0.06919500783327456, 0.0696125406952352, 0.07017749834262071, 0.07088156467176357, 0.07171567516113037, 0.07267027866694538, 0.07373558536068027, 0.07490179038352107, 0.07615926648162845, 0.0774987223316756, 0.07891132612958694, 0.08038879614595154, 0.08192346134759329, 0.08350829594148781, 0.08513693195565125, 0.08680365388090104, 0.08850337908995554, 0.09023162733164689, 0.09198448214362456, 0.09375854658540836, 0.09555089529278589, 0.09735902450588535, 0.09918080142861328, 0.1010144140318425, 0.10285832220941912, 0.10471121102615005, 0.10657194665284729, 0.10843953545835502, 0.11031308661697119, 0.11219177848871437, 0.11407482893642994, 0.11596146965751229, 0.11785092452817927, 0.11974239188551215, 0.12163503060740269, 0.12352794979383425, 0.12542020180543295, 0.12731077837723276 ], [ 0.07960822121404072, 0.07816007120206676, 0.07684325656266565, 0.07566569562102406, 0.07463453489267519, 0.07375594055195919, 0.07303489933693053, 0.07247504230124842, 0.07207850489674154, 0.07184583531985803, 0.07177595987359273, 0.07186620960182809, 0.07211240725485733, 0.07250900852138689, 0.0730492871811331, 0.07372555097337342, 0.07452937381552302, 0.07545183048576161, 0.07648372168042554, 0.07761577999255255, 0.07883885033062768, 0.08014404117737216, 0.08152284557897166, 0.08296723269850363, 0.08446971212625262, 0.08602337396348103, 0.0876219080805264, 0.08925960600756652, 0.09093134875443921, 0.09263258356443285, 0.09435929225540152, 0.09610795343739469, 0.09787550054926707, 0.09965927734344592, 0.10145699217437407, 0.10326667221176954, 0.10508661850102496, 0.10691536262427537, 0.10875162557102581, 0.1105942793014963, 0.1124423113747166, 0.11429479291336388, 0.11615085008654528, 0.11800963920851561, 0.11987032547541569, 0.12173206529337612, 0.1235939920900781, 0.1254552054485288, 0.12731476335681277, 0.12917167733125953 ], [ 0.08237841768671941, 0.08096744012039477, 0.07968414831669168, 0.07853601179403259, 0.07752975468195057, 0.07667116943741237, 0.07596494052633496, 0.07541448941097786, 0.07502185208944095, 0.07478759904754982, 0.07471080482144393, 0.07478907068873011, 0.07501859977721502, 0.07539431969782634, 0.07591004426117351, 0.07655866338212025, 0.07733234914849778, 0.0782227662170932, 0.079221275981923, 0.080319125986726, 0.08150761843855596, 0.08277825407586843, 0.08412284979395088, 0.08553363017986484, 0.08700329440073123, 0.08852506073854055, 0.09009269153343184, 0.09170050146717505, 0.09334335207476845, 0.0950166351897195, 0.09671624776947993, 0.09843856025612642, 0.10018038033479303, 0.10193891367685123, 0.10371172300566758, 0.1054966866034937, 0.10729195718743308, 0.1090959219178029, 0.1109071641594581, 0.11272442749201081, 0.11454658235467614, 0.11637259561304036, 0.11820150324631751, 0.12003238627313735, 0.12186434996119956, 0.1236965063005357, 0.1255279596620583, 0.1273577955124101, 0.12918507201334034, 0.13100881429878924 ], [ 0.08514348506572007, 0.08376852123199137, 0.08251756481713338, 0.08139767188703498, 0.08041518255530541, 0.07957555428131635, 0.07888320523171292, 0.0783413773148336, 0.07795202830757744, 0.07771576127416817, 0.07763179725137367, 0.07769799415203892, 0.07791091138234539, 0.07826591623455287, 0.07875732516232903, 0.07937857093098015, 0.08012238556092689, 0.08098098896495225, 0.08194627407188258, 0.0830099807758549, 0.08416385295509601, 0.08539977478756378, 0.08670988443328875, 0.08808666471102324, 0.0895230116015207, 0.09101228225457957, 0.09254832469652183, 0.09412549168680102, 0.09573864122227453, 0.0973831260970427, 0.09905477474797011, 0.1007498653917765, 0.10246509521937894, 0.10419754617597826, 0.10594464863333637, 0.10770414405913943, 0.109474047609102, 0.11125261140958673, 0.1130382891597923, 0.11482970256052975, 0.11662560996834881, 0.11842487757727768, 0.12022645334383682, 0.12202934379294453, 0.12383259377216838, 0.12563526915896667, 0.12743644247002858, 0.12923518127341654, 0.13103053926317249, 0.1328215498221681 ], [ 0.08789981530833454, 0.08655975257587352, 0.08534001388565508, 0.08424727468588973, 0.08328752576093047, 0.0824659237388424, 0.08178665146852078, 0.08125279642896047, 0.08086625509567011, 0.08062767012642688, 0.08053640536919394, 0.08059056120506246, 0.08078702990070945, 0.08112158781137326, 0.0815890188015583, 0.08218326142467304, 0.08289757139490272, 0.08372469072714447, 0.08465701551850176, 0.08568675551366374, 0.0868060801089996, 0.08800724708421687, 0.08928271191946893, 0.09062521693045021, 0.0920278605611126, 0.09348414799188802, 0.09498802476575242, 0.09653389544349653, 0.09811662942160951, 0.09973155603109897, 0.10137445092784728, 0.10304151562168408, 0.10472935180021127, 0.10643493190438084, 0.10815556721870626, 0.10988887455734465, 0.11163274246147772, 0.11338529767450653, 0.11514487252876668, 0.11690997375932863, 0.11867925315517185, 0.12045148036401644, 0.12222551808272317, 0.12400029978955353, 0.12577481010673403, 0.12754806782131642, 0.1293191115388876, 0.13108698789826007, 0.13285074223558574, 0.13460941155351927 ], [ 0.09064419230443577, 0.08933797462601478, 0.08814841237148893, 0.08708183057560658, 0.08614390184367642, 0.08533951197515668, 0.08467263507159101, 0.08414622508255956, 0.08376213048836743, 0.08352103789898135, 0.08342244879460947, 0.08346469157539425, 0.0836449687465964, 0.08395943671597228, 0.08440331359922258, 0.08497100884900777, 0.08565626758743243, 0.08645232227180877, 0.08735204470057266, 0.08834809223797287, 0.08943304333000862, 0.09059951872304635, 0.09184028612529024, 0.09314834725432743, 0.09451700721913145, 0.09593992696168442, 0.09741116003288201, 0.09892517532263619, 0.10047686754027096, 0.10206155728660965, 0.10367498251106515, 0.10531328303721921, 0.10697297969462471, 0.10865094943207323, 0.11034439762159368, 0.11205082860173145, 0.11376801535786234, 0.11549396909905908, 0.1172269093654874, 0.11896523518749579, 0.12070749771605344, 0.12245237465324849, 0.1241986467298224, 0.12594517640343617, 0.12769088888578514, 0.12943475554829015, 0.13117577970460753, 0.13291298472328114, 0.1346454043855302, 0.13637207537109014 ], [ 0.09337376279882766, 0.09210039787645026, 0.0909400508574691, 0.08989872393149209, 0.08898179934376342, 0.08819391829804474, 0.0875388688407215, 0.08701948866879083, 0.0866375885507293, 0.08639390125872726, 0.08628805961035564, 0.08631860551155167, 0.0864830299538203, 0.08677784196072803, 0.08719866272129571, 0.08774033977708183, 0.08839707526814888, 0.08916256193513196, 0.0900301207871951, 0.09099283498465902, 0.09204367542052733, 0.09317561457629378, 0.09438172634641959, 0.0956552705712105, 0.096989761921074, 0.0983790235009296, 0.09981722608319399, 0.10129891424294397, 0.10281902088331085, 0.10437287173199036, 0.10595618139100357, 0.10756504245859769, 0.10919590913752637, 0.11084557661571036, 0.11251115736685542, 0.11419005537910258, 0.11587993918509377, 0.1175787144402041, 0.11928449667894331, 0.1209955847727512, 0.12271043551576444, 0.12442763967764355, 0.1261458997838941, 0.12786400981327253, 0.12958083693854333, 0.13129530538046932, 0.1330063823950737, 0.13471306637082112, 0.13641437697504724, 0.13810934725761967 ], [ 0.09608600567107624, 0.09484456928549531, 0.09371255770057157, 0.0926956752618781, 0.09179903858086677, 0.09102706711267566, 0.09038338214658287, 0.08987071930502037, 0.08949085940569457, 0.0892445818642121, 0.0891316437249654, 0.08915078598912256, 0.08929976729600063, 0.08957542337562893, 0.08997374920021245, 0.09048999957071066, 0.0911188030861439, 0.09185428410249713, 0.0926901873789825, 0.09362000056702593, 0.0946370704234087, 0.09573470951316894, 0.09690629110504388, 0.09814533086450691, 0.09944555475410011, 0.10080095322002541, 0.1022058222631544, 0.10365479236477852, 0.10514284647714839, 0.10666532841777361, 0.10821794304761485, 0.10979674958999555, 0.11139814937864928, 0.11301886922683979, 0.11465594149717766, 0.11630668183341807, 0.11796866539714218, 0.11963970233822417, 0.12131781312057484, 0.12300120422505391, 0.12468824466011082, 0.12637744362743333, 0.12806742961447912, 0.1297569311176852, 0.1314447591391086, 0.13312979154478835, 0.13481095932496093, 0.13648723475412838, 0.13815762141269916, 0.13982114600119275 ], [ 0.09877870047770611, 0.0975683384296357, 0.09646386319616555, 0.09547070383114649, 0.09459373320029102, 0.09383716883696556, 0.09320448161354468, 0.0926983166137511, 0.09232043036821824, 0.09207164803691523, 0.09195184320778392, 0.09195994179719619, 0.09209395019140984, 0.09235100639154471, 0.09272745165640081, 0.09321891909993067, 0.09382043498193635, 0.09452652807462494, 0.0953313424901993, 0.09622874967100176, 0.09721245580102959, 0.09827610160943959, 0.09941335231703007, 0.10061797625098425, 0.10188391136411215, 0.10320531950545508, 0.10457662878045239, 0.10599256470803582, 0.10744817113656904, 0.10893882203544136, 0.11046022535212516, 0.11200842013433948, 0.11357976808038245, 0.1151709406127215, 0.11677890248226581, 0.11840089281265215, 0.120034404391916, 0.12167716191782706, 0.12332709980576029, 0.12498234007608942, 0.1266411707527101, 0.12830202512565844, 0.12996346215902138, 0.13162414826020505, 0.13328284056801895, 0.13493837186451502, 0.136589637168983, 0.13823558203168534, 0.13987519250950362, 0.14150748677561786 ], [ 0.10144989601803142, 0.10026982407940331, 0.09919216452635332, 0.09822209137468675, 0.0973642530526994, 0.09662268232115805, 0.0960007134090644, 0.09550091015280703, 0.09512500872418593, 0.09487387803918507, 0.09474750017098017, 0.09474497209995744, 0.09486452900521396, 0.0951035881407745, 0.0954588112567393, 0.09592618262065478, 0.096501099042466, 0.09717846794817463, 0.09795280948644443, 0.09881835885967506, 0.09976916549263161, 0.10079918622039873, 0.10190237032363351, 0.10307273489952841, 0.10430442968082866, 0.10559179096699983, 0.10692938479062217, 0.1083120398006924, 0.10973487060543963, 0.11119329248978344, 0.11268302851998314, 0.11420011008493586, 0.11574087191430185, 0.11730194257103241, 0.11888023135073482, 0.12047291244152082, 0.12207740711202285, 0.12369136460705332, 0.12531264234334025, 0.12693928591404285, 0.1285695093316968, 0.13020167586566522, 0.13183427976234421, 0.1334659290744508, 0.1350953297696075, 0.1367212712380422, 0.1383426132742614, 0.1399582745680617, 0.1415672227057452, 0.14316846565292823 ], [ 0.10409787955775845, 0.10294738178787648, 0.10189589203917535, 0.10094834741314117, 0.10010918888343737, 0.0993822792270422, 0.09877082758589124, 0.09827732394232855, 0.09790348661121481, 0.0976502254308866, 0.09751762268812042, 0.09750493298076528, 0.09761060227253597, 0.09783230541156322, 0.0981670004563629, 0.09861099736235282, 0.09916003799194402, 0.09980938405949127, 0.10055390951726309, 0.10138819401210837, 0.10230661435535532, 0.1033034313988855, 0.10437287024212953, 0.10550919225481953, 0.10670675794442999, 0.10796008019172475, 0.10926386780168647, 0.11061305966000866, 0.11200285004575894, 0.11342870583413242, 0.11488637643851707, 0.1163718973997547, 0.11788158854390082, 0.119412047609602, 0.12096014020126096, 0.12252298686340156, 0.12409794800092402, 0.12568260729450728, 0.12727475418369064, 0.1288723659148621, 0.13047358957896008, 0.13207672449548885, 0.13368020523582103, 0.13528258552026534, 0.13688252316991467, 0.1384787662461058, 0.14007014046705102, 0.14165553795297298, 0.14323390731759514, 0.1448042450949377 ], [ 0.10672114723049331, 0.10559957297365663, 0.10457367730333182, 0.10364817657803115, 0.10282731921876283, 0.10211481073846441, 0.10151374484236474, 0.10102654345588426, 0.10065490837719092, 0.1003997868933272, 0.10026135315273028, 0.10023900638713147, 0.100331386274658, 0.10053640490086115, 0.10085129397734952, 0.10127266528565826, 0.10179658178127832, 0.10241863645332223, 0.10313403590049489, 0.10393768564383479, 0.10482427442286765, 0.1057883550748114, 0.10682442003116732, 0.10792696993849152, 0.10909057438150026, 0.11030992412679755, 0.11157987469315626, 0.11289548137774989, 0.11425202612257235, 0.1156450367937723, 0.11707029957417527, 0.11852386524474075, 0.12000205016304928, 0.12150143274556764, 0.12301884623380885, 0.12455136848004929, 0.1260963094319578, 0.12765119693230403, 0.1292137613834909, 0.130781919759662, 0.13235375938371688, 0.1339275218237299, 0.13550158720423758, 0.1370744591728138, 0.13864475071185248, 0.14021117093944513, 0.1417725130018723, 0.143327643123286, 0.14487549084569343, 0.14641504046416373 ], [ 0.10931837603482004, 0.10822513588176559, 0.10722432328988771, 0.10632044827316162, 0.10551757975290296, 0.10481927689433125, 0.10422852598702076, 0.10374768536359828, 0.1033784407112834, 0.10312177282555607, 0.10297793939383734, 0.10294647180587005, 0.10302618730918296, 0.1032152161163668, 0.10351104238389515, 0.10391055737591227, 0.10441012264613574, 0.10500564074774721, 0.10569263082761089, 0.10646630647306507, 0.10732165333695363, 0.10825350433961525, 0.10925661059937863, 0.11032570663907812, 0.11145556882247061, 0.11264106636322795, 0.1138772046010178, 0.11515916054069573, 0.11648231089632984, 0.1178422530705119, 0.11923481963488904, 0.12065608696564167, 0.12210237873515242, 0.12357026497576053, 0.1250565574207778, 0.12655830179819696, 0.1280727677096102, 0.1295974366752545, 0.1311299888695934, 0.13266828901328032, 0.13421037182865217, 0.1357544274089341, 0.13729878679669197, 0.13884190801588542, 0.14038236275431426, 0.14191882384959276, 0.14345005369229386, 0.1449748936244201, 0.14649225437994978, 0.14800110758671708 ], [ 0.111888397751234, 0.11082295871627698, 0.10984677694673517, 0.10896416891406657, 0.10817903546069645, 0.10749479875786751, 0.10691434431653163, 0.10643997023713664, 0.10607334576216228, 0.10581548093526823, 0.10566670877984033, 0.10562668090915212, 0.10569437690415388, 0.10586812718635817, 0.10614564851991289, 0.10652409074472942, 0.10700009291026179, 0.1075698466746246, 0.10822916466983956, 0.10897355151030459, 0.10979827522494924, 0.11069843710120394, 0.11166903821292568, 0.11270504123439513, 0.11380142649060772, 0.11495324153574298, 0.11615564386835062, 0.11740393667048363, 0.11869359769139255, 0.1200203015822572, 0.12137993612757239, 0.12276861291543609, 0.12418267304816993, 0.12561868852265834, 0.1270734599126666, 0.12854401096875934, 0.13002758072073975, 0.13152161362669984, 0.13302374826586152, 0.13453180502180578, 0.13604377315096547, 0.1375577975798098, 0.13907216572434544, 0.14058529457809338, 0.14209571827026043, 0.14360207625468854, 0.14510310225260015, 0.1465976140381906, 0.14808450412587545, 0.14956273139127643 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.5529431300237775, 0.44604827055228274, 0.37206524187290146, 0.2782976511137368, 0.24851023590403679, 0.20354947324851444, 0.22565778818622476, 0.22010702729861042, 0.18298285666651828, 0.18759569052295105, 0.20085305374230503, 0.5573534676805139, 0.1746989242727735, 0.2183196599824182, 0.19460491518089892, 0.10780921745863452, 0.238226229554346, 0.22958363949576532, 0.2149878756112262, 0.2071056563068481, 0.1900202689751575, 0.6469740755856037, 0.19015133660286665, 0.2661866070702672, 0.6136723076924682, 0.5611736382528144, 0.5587024890104212, 0.5705690094297238, 0.6074079073581495 ], "xaxis": "x", "y": [ 0.48189620301127434, 5.221908291933976e-17, 3.735128684771118e-16, 7.3056166976985395e-16, 1.1241013123025867e-12, 1.7863615670411743e-16, 1.6973836005964025e-16, 1.1595431540166796e-16, 1.0432828861936297e-16, 4.456800737861779e-16, 8.984453199534577e-17, 0.0829297685995698, 2.1592734771830426e-16, 6.542767026506807e-15, 0.07742625692514603, 0.1155327867464277, 0.1274855256789842, 0.15223882120817736, 0.18347267930028743, 0.22678575325311892, 0.228572371771065, 0.31394914351403713, 0.6906632911413908, 0.9170842356979847, 0.12633905187249184, 0.20603143492610027, 0.02425943510663835, 0.0, 0.0 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.5529431300237775, 0.44604827055228274, 0.37206524187290146, 0.2782976511137368, 0.24851023590403679, 0.20354947324851444, 0.22565778818622476, 0.22010702729861042, 0.18298285666651828, 0.18759569052295105, 0.20085305374230503, 0.5573534676805139, 0.1746989242727735, 0.2183196599824182, 0.19460491518089892, 0.10780921745863452, 0.238226229554346, 0.22958363949576532, 0.2149878756112262, 0.2071056563068481, 0.1900202689751575, 0.6469740755856037, 0.19015133660286665, 0.2661866070702672, 0.6136723076924682, 0.5611736382528144, 0.5587024890104212, 0.5705690094297238, 0.6074079073581495 ], "xaxis": "x2", "y": [ 0.48189620301127434, 5.221908291933976e-17, 3.735128684771118e-16, 7.3056166976985395e-16, 1.1241013123025867e-12, 1.7863615670411743e-16, 1.6973836005964025e-16, 1.1595431540166796e-16, 1.0432828861936297e-16, 4.456800737861779e-16, 8.984453199534577e-17, 0.0829297685995698, 2.1592734771830426e-16, 6.542767026506807e-15, 0.07742625692514603, 0.1155327867464277, 0.1274855256789842, 0.15223882120817736, 0.18347267930028743, 0.22678575325311892, 0.228572371771065, 0.31394914351403713, 0.6906632911413908, 0.9170842356979847, 0.12633905187249184, 0.20603143492610027, 0.02425943510663835, 0.0, 0.0 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='l2norm'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.563919606450463, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.794798240137525, -0.8520874210346684, -0.8520874210346684, -1.2762253914157329, -1.4725136140408543, -1.4988243361711622, -1.6426003124344273, -1.6426003124344273, -2.2568339493985823, -2.623075368967096, -2.642150339211397, -2.7446813904445038, -2.827032590641066, -2.827032590641066, -2.919859176819361, -3.0871117966714716, -3.0871117966714716, -3.1375854338679257, -3.185432296347054, -3.2743686375058134, -3.2743686375058134, -3.2743686375058134, -3.3148236139470875 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "mean", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "mean", "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.563919606450463, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.794798240137525, -0.8520874210346684, -0.8520874210346684, -1.2762253914157329, -1.4725136140408543, -1.4988243361711622, -1.6426003124344273, -1.6426003124344273, -2.2568339493985823, -2.623075368967096, -2.642150339211397, -2.7446813904445038, -2.827032590641066, -2.827032590641066, -2.919859176819361, -3.0871117966714716, -3.0871117966714716, -3.1375854338679257, -3.185432296347054, -3.2743686375058134, -3.2743686375058134, -3.2743686375058134, -3.3148236139470875 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.563919606450463, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.5905898710285653, -0.794798240137525, -0.8520874210346684, -0.8520874210346684, -1.2762253914157329, -1.4725136140408543, -1.4988243361711622, -1.6426003124344273, -1.6426003124344273, -2.2568339493985823, -2.623075368967096, -2.642150339211397, -2.7446813904445038, -2.827032590641066, -2.827032590641066, -2.919859176819361, -3.0871117966714716, -3.0871117966714716, -3.1375854338679257, -3.185432296347054, -3.2743686375058134, -3.2743686375058134, -3.2743686375058134, -3.3148236139470875 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple \n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array([[trial.objective_mean for trial in experiment.trials.values()]])\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "python3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.1" } }, "nbformat": 4, "nbformat_minor": 2 }