{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Visualizations\n", "\n", "This tutorial illustrates the core visualization utilities available in Ax." ] }, { "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:45: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", "from ax import (\n", " Arm,\n", " ComparisonOp,\n", " RangeParameter,\n", " ParameterType,\n", " SearchSpace, \n", " SimpleExperiment, \n", " OutcomeConstraint, \n", ")\n", "\n", "from ax.metrics.l2norm import L2NormMetric\n", "from ax.modelbridge.cross_validation import cross_validate\n", "from ax.modelbridge.registry import Models\n", "from ax.plot.contour import interact_contour, plot_contour\n", "from ax.plot.diagnostic import interact_cross_validation\n", "from ax.plot.scatter import(\n", " interact_fitted,\n", " plot_objective_vs_constraints,\n", " tile_fitted,\n", ")\n", "from ax.plot.slice import plot_slice\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. Create experiment and run optimization\n", "\n", "The vizualizations require an experiment object and a model fit on the evaluated data. The routine below is a copy of the Developer API tutorial, so the explanation here is omitted. Retrieving the experiment and model objects for each API paradigm is shown in the respective tutorials" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1a. Define search space and evaluation function" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "noise_sd = 0.1\n", "param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\n", "\n", "def noisy_hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(p_name) for p_name in param_names])\n", " noise1, noise2 = np.random.normal(0, noise_sd, 2)\n", "\n", " return {\n", " \"hartmann6\": (hartmann6(x) + noise1, noise_sd),\n", " \"l2norm\": (np.sqrt((x ** 2).sum()) + noise2, noise_sd)\n", " }\n", "\n", "hartmann_search_space = SearchSpace(\n", " parameters=[\n", " RangeParameter(\n", " name=p_name, parameter_type=ParameterType.FLOAT, lower=0.0, upper=1.0\n", " )\n", " for p_name in param_names\n", " ]\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1b. Create Experiment" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "exp = SimpleExperiment(\n", " name=\"test_branin\",\n", " search_space=hartmann_search_space,\n", " evaluation_function=noisy_hartmann_evaluation_function,\n", " objective_name=\"hartmann6\",\n", " minimize=True,\n", " outcome_constraints=[\n", " OutcomeConstraint(\n", " metric=L2NormMetric(\n", " name=\"l2norm\", param_names=param_names, noise_sd=0.2\n", " ),\n", " op=ComparisonOp.LEQ,\n", " bound=1.25,\n", " relative=False,\n", " )\n", " ],\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1c. Run the optimization and fit a GP on all data\n", "\n", "After doing (`N_BATCHES=15`) rounds of optimization, fit final GP using all data to feed into the plots." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "N_RANDOM = 5\n", "BATCH_SIZE = 1\n", "N_BATCHES = 15\n", "\n", "sobol = Models.SOBOL(exp.search_space)\n", "exp.new_batch_trial(generator_run=sobol.gen(N_RANDOM))\n", "\n", "for i in range(N_BATCHES):\n", " intermediate_gp = Models.GPEI(experiment=exp, data=exp.eval())\n", " exp.new_trial(generator_run=intermediate_gp.gen(BATCH_SIZE))\n", "\n", "model = Models.GPEI(experiment=exp, data=exp.eval())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Contour plots\n", "\n", "The plot below shows the response surface for `hartmann6` metric as a function of the `x1`, `x2` parameters.\n", "\n", "The other parameters are fixed in the middle of their respective ranges, which in this example is 0.5 for all of them." ] }, { "cell_type": "code", "execution_count": 5, "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.3000298999660427, -0.3052306486195777, -0.31090123511647494, -0.31698872216037977, -0.3234276925798376, -0.33014096703683005, -0.3370407695848925, -0.34403033356560164, -0.35100591851560914, -0.3578591864128161, -0.36447986407277677, -0.3707585992869392, -0.3765899028705255, -0.38187505856376913, -0.3865248788749851, -0.3904621882533834, -0.3936239256992131, -0.39596277670582636, -0.39744826827440893, -0.3980672890281177, -0.3978240270769896, -0.39673934887047413, -0.3948496704210641, -0.39220539583744896, -0.38886901540267493, -0.384912965467878, -0.3804173549467672, -0.37546765866121634, -0.37015246729633233, -0.36456136881141876, -0.35878301859171224, -0.35290343720429673, -0.3470045569633402, -0.3411630229311108, -0.3354492414065777, -0.32992665988209235, -0.32465125696713093, -0.3196712186060693, -0.3150267774792668, -0.3107501949926815, -0.3068658688461837, -0.3033905529438483, -0.3003336795994658, -0.2976977760281496, -0.29547896769897086, -0.29366756024739593, -0.29224868957797945, -0.29120302700456446, -0.29050752336510177, -0.29013617359702204 ], [ -0.301384033737339, -0.3072009506034876, -0.3135373944943245, -0.3203348117702828, -0.3275206528584137, -0.33500915646266005, -0.34270264276480367, -0.350493308322155, -0.35826549021402143, -0.36589834113541997, -0.3732688321590468, -0.3802549775093811, -0.38673915768203415, -0.3926114052642087, -0.3977725132678187, -0.40213682962588115, -0.40563461405786405, -0.4082138543715209, -0.40984146723830017, -0.41050384161890996, -0.41020671880654147, -0.4089744386499675, -0.40684861405453954, -0.40388632278692327, -0.4001579249865129, -0.3957446254854333, -0.39073590184185425, -0.38522691255823593, -0.3793159866815232, -0.3731022777691716, -0.36668364420006627, -0.3601547961431155, -0.35360572906101095, -0.3471204459188778, -0.34077595629796686, -0.3346415308835843, -0.3287781843209866, -0.32323835781099164, -0.31806577431722993, -0.31329544292485345, -0.3089537936660135, -0.30505892896796327, -0.3016209818818263, -0.29864257375666625, -0.2961193647004323, -0.29404068903648595, -0.2923902653702397, -0.29114696742153057, -0.2902856381777976, -0.28977792689268167 ], [ -0.3029068579570433, -0.30939086799352356, -0.3164491131542124, -0.3240170056777758, -0.332014273835496, -0.34034581406955056, -0.348903121106946, -0.3575662893765552, -0.3662065500961875, -0.37468927850843414, -0.3828773767566057, -0.3906349118209679, -0.39783086686158775, -0.40434285021917526, -0.41006060089019913, -0.41488913367512936, -0.4187513818245092, -0.421590219412166, -0.42336977842952184, -0.4240760144051977, -0.4237165161917821, -0.4223195970143696, -0.4199327415230465, -0.4166205144103555, -0.4124620578746281, -0.4075483165646534, -0.4019791294733027, -0.3958603194582332, -0.3893008944250317, -0.38241045206027535, -0.37529685494708465, -0.3680642174638139, -0.3608112222587778, -0.35362976400397017, -0.34660390265394747, -0.3398090980578339, -0.33331169241558545, -0.32716860618184807, -0.32142721568528143, -0.31612538579177785, -0.31129163713492014, -0.30694543353899595, -0.30309758021463984, -0.2997507263573276, -0.29689996655409345, -0.29453353395708537, -0.292633574959287, -0.2911769908472057, -0.29013632749163554, -0.2894806904309488 ], [ -0.30460057802493057, -0.3118050350128886, -0.3196438978643924, -0.3280461191523524, -0.336923090451986, -0.34616956275325217, -0.3556652225520489, -0.3652769181001796, -0.37486149700441607, -0.3842691818496031, -0.3933473768935719, -0.40194476849254024, -0.40991555721390827, -0.41712364293690973, -0.42344657765518867, -0.42877910559919397, -0.4330361272437614, -0.4361549522425222, -0.43809674466571225, -0.43884710935163984, -0.4384158170981167, -0.4368357147261127, -0.43416090965224996, -0.4304643539165647, -0.42583497696928385, -0.42037452850284907, -0.41419429215399917, -0.4074118192008047, -0.40014781067183314, -0.39252324945849537, -0.3846568542147124, -0.37666289703893274, -0.36864939971481914, -0.36071670054537497, -0.35295636672480224, -0.34545041620100136, -0.3382708078873856, -0.3314791591490256, -0.32512665357982184, -0.31925410881553473, -0.31389218200077706, -0.3090616981096903, -0.3047740923844975, -0.30103196183233005, -0.2978297215980312, -0.295154360202869, -0.29298628366747104, -0.2913002333308665, -0.2900662568112742, -0.28925070706300615 ], [ -0.3064661313124919, -0.3144467295526737, -0.32312783691158964, -0.3324315169481614, -0.3422601879967777, -0.35249761082641906, -0.3630106193415663, -0.37365159064191567, -0.3842616125597247, -0.39467426698508046, -0.404719908303817, -0.4142302808414643, -0.42304329020843934, -0.43100772368361695, -0.4379877067015372, -0.44386668787479644, -0.44855076451580556, -0.4519711937664719, -0.45408597924393534, -0.45488047627860373, -0.4543670160238481, -0.4525836050429909, -0.4495918075275642, -0.44547395779520615, -0.44032987803886314, -0.4342732888548769, -0.42742809792052505, -0.4199247369124005, -0.41189669115660377, -0.40347733412690734, -0.39479714353927564, -0.38598134097639114, -0.3771479656640473, -0.36840636734619014, -0.35985608440644423, -0.3515860618421158, -0.3436741590464566, -0.33618689863595075, -0.32917941338065193, -0.3226955570023955, -0.3167681544475719, -0.3114193765456287, -0.3066612313129954, -0.30249616855494854, -0.29891779539949237, -0.29591169811056806, -0.29345636067130987, -0.2915241643116988, -0.29008244567898744, -0.2890945859530969 ], [ -0.30850305808346146, -0.31731770874925935, -0.32690539919095807, -0.3371808755492606, -0.34803692796216057, -0.3593454427316959, -0.3709592955630757, -0.38271508489764405, -0.3944366606163393, -0.40593935754406396, -0.4170347980249077, -0.4275360865263971, -0.4372631851459312, -0.4460482353767188, -0.45374058150650187, -0.46021125674241914, -0.46535671554533486, -0.4691016341406329, -0.47140065346846993, -0.47223900103510685, -0.4716319950338035, -0.46962349981835394, -0.4662834604570112, -0.4617046905733967, -0.4559991183337425, -0.44929370847777717, -0.44172627393896724, -0.43344137093486657, -0.4245864399341317, -0.4153083159669858, -0.40575018988888956, -0.39604906161599507, -0.3863336904214396, -0.37672301848377954, -0.3673250232967106, -0.3582359425562023, -0.3495398111609288, -0.34130825276358345, -0.3336004762064354, -0.3264634382086069, -0.31993214580502405, -0.3140300833326173, -0.30876975758354286, -0.3041533599531072, -0.30017354549579056, -0.29681432596733726, -0.29405206803413675, -0.29185658021977656, -0.2901922643973136, -0.2890193012024813 ], [ -0.3107093776420887, -0.3204180455998752, -0.33097922942684266, -0.34229993598650665, -0.35426265835552007, -0.36672648766220883, -0.3795291757653624, -0.39249015158287626, -0.40541444389058057, -0.4180974107006531, -0.43033012307016305, -0.44190520303117464, -0.452622875229139, -0.4622969637863892, -0.4707605534689744, -0.47787104013351733, -0.4835143209528926, -0.4876079194964613, -0.490102901724095, -0.490984511695291, -0.4902715340660746, -0.4880144671521396, -0.4842926584206584, -0.47921060765574164, -0.4728936774227246, -0.4654834638353117, -0.457133073465005, -0.44800252721122946, -0.4382544734422511, -0.428050346029609, -0.41754705349170473, -0.4068942382569902, -0.3962321039455352, -0.3856897761591185, -0.3753841398597022, -0.3654190841177065, -0.3558850819794884, -0.3468590378823059, -0.3384043454052299, -0.3305711118926089, -0.323396521262972, -0.3169053198957107, -0.3111104209959842, -0.3060136289674089, -0.3016064865093051, -0.2978712436692257, -0.29478194097019994, -0.292305589618993, -0.2904034225606149, -0.28903218253000595 ], [ -0.3130814727818636, -0.32374596952816415, -0.33534994213299885, -0.3477922493822999, -0.3609444100217397, -0.37465176690020663, -0.3887357245840438, -0.4029970683763383, -0.4172203156852984, -0.4311789901980536, -0.4446416489207722, -0.45737843602787054, -0.46916789023976513, -0.4798036988592167, -0.4891010760162561, -0.4969024484845914, -0.5030821613560861, -0.5075499673761352, -0.510253134789979, -0.5111770936036008, -0.5103446317461657, -0.5078137421944525, -0.5036743012046365, -0.4980438191350304, -0.49106254388037973, -0.4828882104501675, -0.473690719481458, -0.4636469959346652, -0.45293623231008784, -0.4417356649167009, -0.43021697356187183, -0.41854334028412554, -0.4068671558588718, -0.39532832661059836, -0.38405310982413454, -0.37315339364741484, -0.36272633563307943, -0.35285428103426264, -0.3436048952306643, -0.3350314615472164, -0.3271733135303676, -0.32005638692545035, -0.3136938890143418, -0.3080870901359748, -0.3032262434955648, -0.29909163511738, -0.29565475727613455, -0.2928795878985966, -0.29072394749330277, -0.28914089621649786 ], [ -0.31561398606783864, -0.3272977143337177, -0.34001591748832616, -0.353658917971473, -0.3680865811234877, -0.3831295212521404, -0.3985915178345115, -0.4142531565419513, -0.4298766449729924, -0.44521168371782605, -0.4600022036863096, -0.4739937152817719, -0.4869409593685753, -0.49861550970291824, -0.5088129569073512, -0.517359309416643, -0.5241162794012609, -0.5289851810791597, -0.5319092515308482, -0.5328743035667816, -0.5319077273759091, -0.5290759623198109, -0.5244806521333266, -0.5182537672830216, -0.5105520213829089, -0.5015509219151002, -0.49143878024149734, -0.4804109664347094, -0.46866463753562837, -0.45639410133689373, -0.44378690951011657, -0.43102071058980307, -0.4182608400299467, -0.4056585843136883, -0.3933500300798094, -0.3814553970023381, -0.37007875310978056, -0.3593080209590337, -0.34921519972338144, -0.33985674873731797, -0.3312740992787321, -0.323494280481026, -0.3165306598281161, -0.31038380700183854, -0.30504249122243454, -0.3004848170803589, -0.29667949371662083, -0.2935872193855025, -0.29116215057684824, -0.28935341442624596 ], [ -0.31829973197978756, -0.3310673775376686, -0.344973102950369, -0.35989833503956425, -0.3756906126406252, -0.3921648206649997, -0.4091057861984082, -0.42627226004041285, -0.44340223361363895, -0.4602194620587641, -0.47644098405894497, -0.49178535290596914, -0.5059812277584781, -0.51877592565849, -0.5299435101811567, -0.5392919969422426, -0.5466692926442438, -0.5519675527002901, -0.5551257386858749, -0.5561302731093862, -0.5550138144493526, -0.5518522976664991, -0.5467604921972643, -0.5398864104282753, -0.5314049478775628, -0.521511149079332, -0.5104134722301495, -0.4983273766168763, -0.4854694880339896, -0.47205251836992945, -0.45828103561263844, -0.4443481075568537, -0.43043278215664693, -0.41669832298328857, -0.4032910905861501, -0.39033994885923795, -0.37795607764846295, -0.36623308585841685, -0.3552473398740683, -0.34505844668318164, -0.33570985618774407, -0.3272295695877374, -0.319630957672554, -0.31291370244893313, -0.30706487698210394, -0.302060172155741, -0.2978652670638915, -0.2944373246761436, -0.2917265793922863, -0.2896779709840531 ], [ -0.3211296294631607, -0.33504679576679386, -0.35021482515510993, -0.366505928020776, -0.3837546585989158, -0.40175915897455294, -0.42028393347961324, -0.43906418794298596, -0.4578116852069922, -0.47622197821210666, -0.49398278968974985, -0.510783219147215, -0.5263233805624112, -0.5403240160008262, -0.5525355991970005, -0.562746445765048, -0.5707893872114873, -0.5765466444349209, -0.5799526482710505, -0.5809946905420914, -0.5797114359517882, -0.5761894680370783, -0.5705581664894158, -0.562983306160716, -0.5536598218336963, -0.5428041944636696, -0.5306468865657071, -0.5174251938279044, -0.5033767971362334, -0.4887342055733469, -0.4737201876727728, -0.45854420439502797, -0.44339978927738666, -0.42846277233283714, -0.41389021519110647, -0.3998199142721267, -0.3863703336716364, -0.37364084635742945, -0.3617121873149832, -0.35064705145345776, -0.340490798493594, -0.33127225309486097, -0.3230046080756164, -0.3156864495770313, -0.30930292453243435, -0.3038270634577036, -0.29922125749000106, -0.29543887099738764, -0.2924259536311995, -0.290123001730213 ], [ -0.3240926599663916, -0.33922544149174116, -0.35573161745414905, -0.37347390990974316, -0.3922732557321392, -0.4119100377794195, -0.43212703246235773, -0.45263412199390274, -0.47311472605677174, -0.49323380531308436, -0.5126471834033374, -0.5310118315535106, -0.5479966688615047, -0.563293361228656, -0.5766265625197536, -0.5877630414433577, -0.5965191823069397, -0.6027664378225797, -0.6064344422041482, -0.6075116517241026, -0.6060435519043704, -0.6021286374635755, -0.5959125152855442, -0.5875805873419591, -0.5773498302275654, -0.5654601976854242, -0.552166135647365, -0.5377286248325822, -0.5224080664353461, -0.506458215862871, -0.49012126097209907, -0.4736240453392062, -0.4571753607965017, -0.44096418014622263, -0.42515867080081526, -0.40990582096628014, -0.39533151830135715, -0.38154094246530357, -0.36861916309969445, -0.3566318690950291, -0.3456261891593795, -0.33563159374092266, -0.3266608908502463, -0.3187113408552825, -0.3117659168804997, -0.3057947287685623, -0.3007566121241143, -0.29660086352670834, -0.29326908285953435, -0.29069706771926174 ], [ -0.3271758565652019, -0.3435903471340004, -0.3615110693080019, -0.38079104516003126, -0.40123699842523597, -0.42261054466946313, -0.44463130269143036, -0.466981992468245, -0.4893154800001712, -0.5112636136683052, -0.5324475758048101, -0.5524893544123342, -0.5710238327182455, -0.5877109097215608, -0.602247015110822, -0.6143753778032954, -0.6238944561713269, -0.6306640410994536, -0.634608694259412, -0.6357183699371675, -0.6340462702275897, -0.6297041784520895, -0.6228556829274001, -0.6137078253312664, -0.602501773934091, -0.5895031287587393, -0.5749924179722685, -0.5592562537068163, -0.5425794964700938, -0.5252386471471128, -0.507496559798447, -0.4895984591422623, -0.4717691614668359, -0.45421134000665675, -0.4371046450622833, -0.42060548228964956, -0.4048472650995769, -0.3899409838797152, -0.3759759706152538, -0.36302077746012373, -0.35112412717368546, -0.34031592771988306, -0.3306083689638377, -0.3219971335819406, -0.31446275589174055, -0.30797215215296214, -0.3024803268440286, -0.2979322358595282, -0.2942647644795289, -0.2914087597928354 ], [ -0.33036433025617307, -0.3481260632538532, -0.3675377046656856, -0.3884424373544376, -0.4106322260752544, -0.4338489324700142, -0.4577875760314555, -0.48210182707065463, -0.5064117004749955, -0.5303132886613705, -0.5533902343909681, -0.575226506840069, -0.5954199180498735, -0.6135957148629484, -0.6294195185160245, -0.6426088741319498, -0.6529427251770864, -0.6602682458672657, -0.6645046404917782, -0.6656437363574484, -0.6637474331364442, -0.6589422991548171, -0.6514117990007126, -0.6413867762591844, -0.6291348876848867, -0.6149496876524849, -0.5991400005565286, -0.5820201079255258, -0.5639011351487435, -0.5450838700293728, -0.5258531000832636, -0.5064734314522122, -0.4871864578444368, -0.46820908602010025, -0.44973279364299124, -0.43192359159845606, -0.41492248046945435, -0.39884622371572087, -0.38378830235560735, -0.3698199621253174, -0.3569913090712533, -0.3453324485878615, -0.33485469192718176, -0.32555187015907006, -0.31740179716684624, -0.3103679114756053, -0.3044011048016768, -0.29944171823345433, -0.2954216606491038, -0.29226658346237744 ], [ -0.3336413399000182, -0.3528146581880235, -0.37379289738179244, -0.3964093471117204, -0.4204407314260422, -0.4456082077915656, -0.4715807576598118, -0.4979810795427888, -0.5243939651999471, -0.5503769933833991, -0.575473219330254, -0.5992253799386021, -0.621190986006316, -0.6409575496754849, -0.6581571156273925, -0.6724792465022694, -0.6836816695070481, -0.6915979260147983, -0.6961415709952246, -0.6973067243677767, -0.6951650530985639, -0.6898595286148426, -0.6815955282740335, -0.6706300082110689, -0.6572595538035874, -0.6418081105201501, -0.6246151203679039, -0.6060246548055345, -0.586375966583049, -0.5659957045344972, -0.5451918682029043, -0.5242494390700609, -0.5034275210338439, -0.48295775708472344, -0.4630437593282447, -0.44386128992429685, -0.42555895416621237, -0.4082592066998626, -0.39205952119447407, -0.3770336266596551, -0.36323276458794573, -0.3506869651272685, -0.33940637308511323, -0.3293826723980575, -0.3205906593069252, -0.3129900009170544, -0.30652719081363067, -0.3011376827288972, -0.2967481535054235, -0.29327882360001434 ], [ -0.3369884125527638, -0.3576357670657415, -0.3802548326022953, -0.4046690498986676, -0.4306394999504606, -0.4578657389807651, -0.4859892922048995, -0.5145999469109029, -0.5432448412670878, -0.5714401823759163, -0.5986852506984801, -0.6244781661107002, -0.6483327162414624, -0.6697953987266917, -0.6884617282932047, -0.7039908302492586, -0.7161174014980651, -0.7246602744361323, -0.7295270584646186, -0.7307146335824078, -0.7283055950631152, -0.7224610579587886, -0.7134104886328608, -0.7014394099556056, -0.6868759116605503, -0.6700768856563448, -0.6514148086844095, -0.6312657328064517, -0.6099989451671163, -0.5879685508041804, -0.5655070408167346, -0.5429207507552853, -0.5204870000880554, -0.49845263470132994, -0.47703366651859425, -0.4564157100657188, -0.43675494660739345, -0.41817939406422855, -0.40079031794765607, -0.3846636786102675, -0.36985156743396774, -0.35638363381828697, -0.3442685411865988, -0.3334955100308077, -0.32403600761120455, -0.31584562847071707, -0.3088661816004351, -0.3030279654805883, -0.2982521788134085, -0.2944533891650183 ], [ -0.3403855209671519, -0.3625666985216418, -0.38689852381894163, -0.41319474458259864, -0.44120049191928945, -0.47059289551705485, -0.5009846470414517, -0.5319306869135899, -0.5629380313157263, -0.5934785759609289, -0.6230045152238731, -0.6509658070404509, -0.6768289090013841, -0.7000958306875771, -0.7203224197331559, -0.7371347543250706, -0.75024257644121, -0.7594488767946929, -0.7646550227374368, -0.7658611731796031, -0.7631621054153542, -0.7567389391729786, -0.7468475399843458, -0.7338045855227043, -0.7179723683260298, -0.6997433855821064, -0.6795256454075437, -0.6577294250495002, -0.6347559823315223, -0.6109884810527102, -0.5867851727432031, -0.562474701187876, -0.5383532722188026, -0.5146833599944917, -0.4916935962964406, -0.46957950176853247, -0.4485047571444085, -0.4286027688083237, -0.4099783484141376, -0.39270939394160054, -0.3768485235048512, -0.3624246678692893, -0.3494446678770723, -0.33789494482709104, -0.3277433134340494, -0.3189409895396562, -0.31142481294226265, -0.3051196669608709, -0.2999410391232502, -0.29579763908795953 ], [ -0.3438113247858452, -0.36758260754879823, -0.39369589585567755, -0.42195552459997865, -0.4520904803331368, -0.4837547329315448, -0.5165308272599637, -0.5499369500904571, -0.583437514787098, -0.6164571083068237, -0.6483974245735636, -0.6786565710962078, -0.7066498954463324, -0.7318312596258444, -0.753713528573375, -0.7718869732255116, -0.7860343506552641, -0.7959416266358218, -0.8015036355591053, -0.8027243892111636, -0.7997121931768616, -0.7926701481195533, -0.7818829520249403, -0.7677011436729608, -0.7505240203820157, -0.7307824258207996, -0.708922454155896, -0.6853908858355455, -0.6606228964614148, -0.6350323028039078, -0.609004362320466, -0.5828909469095279, -0.5570077780056593, -0.5316333375120929, -0.5070090490324693, -0.4833403443942148, -0.46079827914740534, -0.43952142665574934, -0.41961785472111, -0.4011670642789168, -0.38422184044128327, -0.36881002632170135, -0.35493627428562413, -0.34258385320621176, -0.3317165918649352, -0.3222810191283483, -0.31420872612489303, -0.3074189326228225, -0.301821198660464, -0.2973181914796419 ], [ -0.34724348127293614, -0.37265674267779547, -0.40061594428911473, -0.4309164244158633, -0.46327095929768713, -0.49730973935364664, -0.5325839394752221, -0.5685731442506938, -0.6046967020448015, -0.640328866665756, -0.6748173419621174, -0.7075045760916806, -0.7377508712006595, -0.7649581090505994, -0.7885926875495396, -0.8082061686371256, -0.8234521982533358, -0.8340984928365125, -0.8400330765380878, -0.8412644472777189, -0.837915875638839, -0.8302145249912651, -0.8184764650846141, -0.8030888972950738, -0.7844910024234287, -0.7631547660036475, -0.7395669535157889, -0.7142131349729037, -0.6875643400117216, -0.6600666065479998, -0.6321334064595242, -0.6041407155433995, -0.576424352052219, -0.5492791354727136, -0.5229594034948762, -0.49768045539664185, -0.473620549632902, -0.4509231598852834, -0.4296992776362586, -0.4100296331341694, -0.39196678426329923, -0.3755370885392427, -0.36074262164334525, -0.34756313195088073, -0.3359581220559248, -0.32586912671136914, -0.3172222175479884, -0.3099307175870838, -0.3038980634548334, -0.2990207194942036 ], [ -0.3506590302134106, -0.37776077488737825, -0.40762498157065274, -0.44003855435856853, -0.4746981385549419, -0.5112096616968123, -0.5490918243361266, -0.5877838525151922, -0.6266576233606815, -0.6650340441265445, -0.7022032994232288, -0.7374482795228248, -0.7700701749008583, -0.7994149000537134, -0.8248987477363394, -0.8460315411461672, -0.8624356064844767, -0.8738591590083837, -0.8801831599603811, -0.8814212906534776, -0.8777133092026593, -0.8693126137563474, -0.8565692662338087, -0.8399099952155689, -0.8198167845857517, -0.7968055750382965, -0.771406385191546, -0.7441458393954197, -0.7155327218953184, -0.6860468144627716, -0.6561309606638995, -0.6261860623128578, -0.596568561998477, -0.5675898944031104, -0.5395173835680603, -0.5125761049882579, -0.4869513031763013, -0.46279104320489106, -0.44020886849086394, -0.41928632927003495, -0.4000753307777831, -0.3826003213520971, -0.36686039280274607, -0.35283139351961035, -0.34046815634387095, -0.3297069195968091, -0.3204679769968568, -0.3126585405620059, -0.3061757515842851, -0.3009097384018311 ], [ -0.3540348557099079, -0.38286521418669806, -0.4146869792340353, -0.4492793367528283, -0.48632304056830944, -0.5253994311198422, -0.5659937802171106, -0.6075033297454696, -0.6492501793580805, -0.6904989337434071, -0.7304787344799042, -0.7684089656394044, -0.8035275415787976, -0.8351202937502251, -0.862549638733515, -0.8852805225152824, -0.9029016801377678, -0.9151405653621257, -0.9218708631663481, -0.9231122049705763, -0.9190224370505322, -0.9098834326153027, -0.8960819127183519, -0.8780870180012393, -0.8564264496124983, -0.8316628892678696, -0.8043721460214633, -0.7751241068761899, -0.7444671477571138, -0.7129162507211034, -0.6809447226369253, -0.6489791508138625, -0.6173970714216938, -0.5865267585047459, -0.5566485459259893, -0.5279971495113501, -0.500764541924165, -0.4751030328791179, -0.4511283113889796, -0.42892230738994797, -0.4085358214913013, -0.38999094815219715, -0.37328337353015795, -0.35838465941021347, -0.34524462619986485, -0.33379392239072214, -0.32394682174689116, -0.3156042337149556, -0.3086568597847654, -0.3029883896416512 ], [ -0.3573482248727844, -0.38793991747957324, -0.4217640138370361, -0.45859285532786875, -0.49809171658290796, -0.5398172085461606, -0.583220402942812, -0.6276551058113413, -0.6723914843938811, -0.7166349979871752, -0.7595502821727339, -0.800289267035863, -0.8380223701311007, -0.8719711287016078, -0.9014402067192882, -0.9258464513759304, -0.9447426985089816, -0.9578343970127186, -0.9649878009055386, -0.96622933429407, -0.9617365987284225, -0.9518222203856669, -0.9369122468158293, -0.9175210802496322, -0.8942249896253242, -0.8676361008896996, -0.8383784579159868, -0.8070673226079026, -0.7742924057513144, -0.7406052581222696, -0.7065106616856831, -0.6724615780971079, -0.638857044890063, -0.6060423465456359, -0.5743108042643381, -0.5439065981520823, -0.5150281355553531, -0.4878315923052623, -0.46243436834130636, -0.4389183083002095, -0.41733263571852597, -0.39769663118791354, -0.3800021443730317, -0.3642160619115068, -0.3502828548497142, -0.3381273018786196, -0.32765743525246227, -0.318767696647964, -0.3113422339525165, -0.3052582287357557 ], [ -0.3605773996874857, -0.39295468794193567, -0.42881682147992306, -0.46793032790067957, -0.5099455971922886, -0.5543945714489202, -0.6006935683119464, -0.6481517276436634, -0.6959853394371661, -0.7433380540585787, -0.7893066664299173, -0.8329717678452677, -0.8734320548910657, -0.909840506143095, -0.941440085747589, -0.9675962698416981, -0.9878236840551295, -1.0018045790243888, -1.009397706795926, -1.0106372101736105, -1.0057221631166289, -0.9949982193202688, -0.9789333605791267, -0.9580899947090539, -0.9330956739224169, -0.9046145233808619, -0.873321117689823, -0.8398780659706342, -0.8049180308500188, -0.7690303902765903, -0.7327523198984887, -0.6965637673205489, -0.6608856162033345, -0.6260802815110884, -0.592454007882248, -0.5602602296383437, -0.5297034669162508, -0.5009433590285324, -0.47409856171154896, -0.44925035241809463, -0.4264458922946335, -0.4057011800139205, -0.38700379558838127, -0.37031556622012063, -0.35557528797803106, -0.34270160811016603, -0.3315961205189569, -0.3221466638361632, -0.31423075211814344, -0.3077190248436814 ], [ -0.36370231352870963, -0.3978799615392383, -0.4358054616425471, -0.47724070906713933, -0.5218219908546397, -0.5690568625317907, -0.6183265853883895, -0.6688946751642134, -0.7199218761236241, -0.7704876226161194, -0.8196177435313411, -0.866317746041798, -0.9096104433763879, -0.9485759895685462, -0.9823916730813592, -1.0103683155401164, -1.0319800601941398, -1.046884857834263, -1.054934002957077, -1.0561703753096328, -1.0508162658347358, -1.039252573329345, -1.0219916857403601, -0.9996465683489743, -0.9728985517403343, -0.9424660911848703, -0.9090763773781887, -0.8734411518237077, -0.8362374864209202, -0.798093713245257, -0.7595802149305898, -0.7212044544518278, -0.6834094435699745, -0.646574800564173, -0.6110195944084962, -0.5770062773245892, -0.5447451406374654, -0.5143988696419405, -0.4860869097359971, -0.4598894818231126, -0.43585119559404484, -0.41398430032382993, -0.3942716788631281, -0.3766697261014702, -0.3611112550672455, -0.34750854352619065, -0.3357565792039988, -0.3257364957150696, -0.317319129173, -0.31036858031206627 ], [ -0.36670529779801286, -0.40268757034092906, -0.4426900854821776, -0.4864714248125188, -0.533654740211765, -0.5837237190342917, -0.6360245487157884, -0.6897744887326108, -0.7440774186547839, -0.7979464947959827, -0.8503337598594349, -0.9001661237162208, -0.946386495501786, -0.9879980003749127, -1.0241082965292045, -1.053970302730749, -1.0770154966586916, -1.0928765710542012, -1.101397562138473, -1.1026312069306137, -1.0968247549602645, -1.084396441920948, -1.0659053031929446, -1.0420171170282446, -1.013469167732225, -0.9810362621985116, -0.945500014713417, -0.9076228479341832, -0.8681275076469654, -0.8276822552420593, -0.7868913780504206, -0.7462902986122786, -0.7063443780122649, -0.6674504689421243, -0.6299403381605772, -0.5940852024523635, -0.5601007731828975, -0.5281523599779357, -0.4983597317080276, -0.47080156679146423, -0.4455194412429855, -0.42252139803825584, -0.40178521016773816, -0.38326148684610084, -0.3668767744462288, -0.352536772428949, -0.3401297278829807, -0.32953000391210174, -0.3206017528564926, -0.3132025787249648 ], [ -0.36957183699923346, -0.4073515648873314, -0.44943179648648135, -0.49556923434806477, -0.5453750406723483, -0.5983097978220719, -0.6536849164388839, -0.7106711473973777, -0.7683146148512642, -0.8255605799108738, -0.8812848961651017, -0.9343327063840594, -0.983563233725656, -1.0278985075222504, -1.0663726802957747, -1.0981776071220188, -1.1227000640331406, -1.1395467327674702, -1.1485547930422688, -1.149788071690784, -1.1435204748352692, -1.1302094540959586, -1.1104625875404062, -1.0850003031998956, -1.054617582445048, -1.0201472031996546, -0.9824266625954978, -0.9422703273653392, -0.9004476570577006, -0.8576676475252029, -0.8145690646919005, -0.7717156484947719, -0.7295952735054632, -0.6886220231009714, -0.6491402168639883, -0.6114295762403523, -0.5757108833424935, -0.5421516583187327, -0.5108715395570185, -0.4819471927595066, -0.45541669682759367, -0.4312834533734796, -0.40951973789483465, -0.3900700490513054, -0.3728544148747237, -0.3577717828222997, -0.3447035626148668, -0.3335173207960257, -0.32407056017322466, -0.31621446960932575 ], [ -0.3722913223751888, -0.411849069087442, -0.4559935824381933, -0.5044812059402183, -0.5569124182675814, -0.6127257058383343, -0.6711983383868535, -0.7314547376123595, -0.7924828916761029, -0.8531591037498325, -0.9122811811405251, -0.9686098053375789, -1.020917088524885, -1.0680401260968615, -1.10893583515632, -1.1427319910127738, -1.1687688438889354, -1.1866265886781406, -1.196136208481058, -1.1973739733040727, -1.190642046043278, -1.1764386521477022, -1.1554213243025553, -1.128366419224657, -1.09612780445686, -1.0595973495300777, -1.019669475009767, -0.9772114213110991, -0.9330401476189885, -0.8879060036367433, -0.8424826778693703, -0.7973624996340185, -0.7530559690473183, -0.7099943695399114, -0.6685344200825807, -0.6289640916566287, -0.5915089020228645, -0.556338188905295, -0.5235710318759761, -0.49328164281469356, -0.46550417192871907, -0.4402369785635315, -0.4174464893343378, -0.39707080563755726, -0.37902322537132926, -0.3631958115498911, -0.3494630818805494, -0.3376858225019872, -0.3277149624513377, -0.31939539705967834 ], [ -0.37485776534137616, -0.41616113122161724, -0.4623412871546272, -0.513155783019151, -0.5681958541104619, -0.6268791375759193, -0.6884497530570642, -0.7519864507093373, -0.816419293520444, -0.8805552347319657, -0.9431128681254952, -1.0027663507548468, -1.058197759105208, -1.10815575680715, -1.1515165180248907, -1.1873409274428803, -1.214921166178415, -1.2338108237422742, -1.243835666440115, -1.2450858850799222, -1.2378933290332055, -1.2227981013067175, -1.2005084589007309, -1.171857255800965, -1.1377577537062995, -1.099161439976119, -1.057020214047425, -1.0122547432952598, -0.9657299929524903, -0.9182380872589153, -0.8704879470900359, -0.8231006788651587, -0.7766094737697792, -0.7314627660783107, -0.6880295225428168, -0.6466057251140368, -0.6074213191998623, -0.5706471017199817, -0.5364012048931666, -0.5047549890564617, -0.47573828991531086, -0.4493440709163039, -0.42553260649867486, -0.4042353624689361, -0.3853587429895531, -0.3687878417280882, -0.35439027613573415, -0.34202011288340295, -0.3315218256870228, -0.322734178129072 ], [ -0.37727042295823143, -0.42027352410895313, -0.4684445788173688, -0.5215439046681939, -0.5791550309090951, -0.6406762107519376, -0.7053197646663802, -0.7721199436844233, -0.8399497628807546, -0.9075472218874947, -0.9735513801851325, -1.0365486178553378, -1.0951287254076871, -1.1479489154644524, -1.193801424366331, -1.2316777028849295, -1.2608206697588293, -1.2807576326192478, -1.2913105043244941, -1.2925849900678927, -1.2849437870533555, -1.2689693648860256, -1.2454206549277367, -1.2151867084064467, -1.1792398849381476, -1.1385911343139967, -1.0942498472731792, -1.0471902589433688, -0.9983255466185947, -0.9484898205841334, -0.8984274063828004, -0.8487882926948089, -0.8001283860355977, -0.7529132116742202, -0.7075238443862187, -0.6642640667712786, -0.6233679839852924, -0.5850075423077606, -0.5492995924279641, -0.5163123035218721, -0.486070871140417, -0.4585625700099817, -0.43374127940576856, -0.41153165006479053, -0.3918330854416635, -0.3745236787910877, -0.35946418970710436, -0.346502073525486, -0.3354755107201439, -0.32621733495864214 ], [ -0.37953427949974006, -0.4241774372521052, -0.4742778596778289, -0.5296001312944101, -0.5897216632115846, -0.6540229782740504, -0.7216863005432741, -0.7917030909310651, -0.8628909217709355, -0.9339201339489085, -1.0033509402832013, -1.0696817040918767, -1.1314085647261167, -1.187094918541456, -1.2354462938703445, -1.2753824964450047, -1.3060964034279559, -1.3270898884330644, -1.3381828142716974, -1.339498078659816, -1.3314299874166793, -1.3146030620650953, -1.2898258506161802, -1.258042281156162, -1.220282603429951, -1.177616322364738, -1.1311097451257783, -1.081790375517917, -1.0306194920935008, -0.9784731845198922, -0.926131214171316, -0.8742724750608732, -0.8234755758405312, -0.7742230688857765, -0.7269080180582559, -0.6818418354945255, -0.6392625708697526, -0.5993430722866439, -0.5621986435708353, -0.5278939959234429, -0.4964494336326045, -0.4678463242300046, -0.4420319813218677, -0.41892413034391873, -0.3984151320436442, -0.38037610821434376, -0.36466105773107993, -0.3511109821822692, -0.33955797529031484, -0.32982918240712056 ], [ -0.38166032210061185, -0.42786999510887214, -0.47982105076463877, -0.5372837129362185, -0.599830858141094, -0.6668270791236597, -0.7374265347070694, -0.8105801433327987, -0.8850524067064269, -0.9594482911419682, -1.0322510139177044, -1.1018719123722278, -1.166713245651279, -1.2252431090635068, -1.2760781257679095, -1.3180646490355097, -1.3503452023241425, -1.3723976658544998, -1.3840421293552059, -1.385420372939513, -1.3769584932720718, -1.3593217309653243, -1.3333660015583682, -1.3000876427523862, -1.2605725989137115, -1.2159472271639447, -1.167333562503441, -1.1158116207002193, -1.0623903410233089, -1.0079875584109776, -0.9534183542652693, -0.8993904665316219, -0.8465051563546224, -0.795261939489596, -0.7460657778466208, -0.6992355907371367, -0.6550132213149376, -0.6135722472291154, -0.575026242790155, -0.5394362813576152, -0.5068176132589376, -0.4771455677370843, -0.4503608064086181, -0.4263740983901563, -0.40507079266392465, -0.3863151344075568, -0.36995451752120634, -0.35582369898069766, -0.3437489373184617, -0.33355197055572994 ], [ -0.38366554618862136, -0.43135453036399485, -0.4850601767430729, -0.5445595259540457, -0.6094224386453584, -0.6789994736523954, -0.7524190452912346, -0.8285942942205294, -0.9062397978767462, -0.9838984775695483, -1.0599796990138333, -1.1328102130450401, -1.2006995951397987, -1.2620203290242253, -1.31529871747136, -1.3593063497771232, -1.3931355879461245, -1.416242388883319, -1.4284498031873682, -1.4299200528130853, -1.4211103933670903, -1.4027242054096614, -1.3756611778526338, -1.3409663680220787, -1.2997782040853527, -1.253277388289889, -1.2026398751954295, -1.1489969691940978, -1.0934044883553977, -1.0368215393101619, -0.9800982504772241, -0.923971050815002, -0.8690637646628399, -0.8158928082990828, -0.7648749828512151, -0.7163366485637163, -0.67052336500318, -0.6276093538665342, -0.587706372549607, -0.5508717766171051, -0.5171157008996194, -0.4864074046196186, -0.4586809060046494, -0.43384007517297485, -0.41176336050445517, -0.3923082966581726, -0.3753158904206464, -0.3606149167132896, -0.3480260960582582, -0.33736607908586347 ], [ -0.3855726299506298, -0.4346405414430986, -0.48998767267048515, -0.5513987961181259, -0.6184421487766284, -0.6904561913516446, -0.7665461516824417, -0.8455906275396997, -0.9262581605974674, -1.007034007178063, -1.0862581968190346, -1.1621769729130713, -1.2330101623087752, -1.2970358746552073, -1.352689764348299, -1.3986679835752787, -1.4340134520974492, -1.458162881752832, -1.4709453645419046, -1.4725447425641303, -1.463447684281835, -1.444391669864131, -1.4163151372360747, -1.3803069554956442, -1.3375538476492332, -1.2892875819838423, -1.2367356185166907, -1.181078857170357, -1.1234188578686422, -1.064755268236244, -1.0059728165708761, -0.9478363649808975, -0.8909921633367515, -0.8359734626432911, -0.7832088772941204, -0.7330322027688001, -0.6856927192784369, -0.6413653032119531, -0.6001599135058953, -0.562130219008913, -0.5272812896823081, -0.4955763927068054, -0.4669430157035246, -0.4412782833052228, -0.4184539409264125, -0.3983210546476512, -0.3807145271160227, -0.3654574687540516, -0.3523654052749391, -0.3412502583370064 ], [ -0.3874092285810822, -0.4377432720568353, -0.4946023388746984, -0.5577795252889008, -0.6268426530121352, -0.7011200035853117, -0.7796963527565534, -0.8614193908315787, -0.9449161797759914, -1.028619682121815, -1.1108064778075555, -1.1896481442442615, -1.2632797325141305, -1.3298882140569108, -1.38781979862198, -1.4356954129072907, -1.47250980258255, -1.497683604415429, -1.5110551078254162, -1.5128301654973164, -1.5035216444770252, -1.4838954723701443, -1.4549224150607956, -1.4177291422367775, -1.3735456159166697, -1.323650690750466, -1.2693203410916334, -1.2117828972876172, -1.1521841495424934, -1.0915632725935671, -1.0308389478581477, -0.9708040866602305, -0.9121271631531671, -0.855358185166629, -0.8009375835524002, -0.749206644588172, -0.7004184587578007, -0.654748670383886, -0.612305572152181, -0.5731392968725578, -0.5372500210261105, -0.5045952155649125, -0.47509606173633, -0.448643194540817, -0.42510194541517243, -0.40431723320255986, -0.38611820678580244, -0.37032268578609195, -0.3567413905164788, -0.345181910006354 ], [ -0.3892068603881722, -0.4406828696967746, -0.4989088854310322, -0.5636865481902801, -0.6345842424440815, -0.7109219231131236, -0.7917667624199239, -0.875939494032582, -0.9620308114507915, -1.0484276182143493, -1.1333502010290717, -1.2149030810642047, -1.291143763855681, -1.3601738022189571, -1.4202533119662002, -1.4699295221808768, -1.508150881471395, -1.534325351784744, -1.548303126554337, -1.550311069228589, -1.5408832052512142, -1.5208066396061004, -1.4910768528106275, -1.452851440474964, -1.4073978614623703, -1.356037476653293, -1.3000912410514407, -1.2408322707050816, -1.1794486707743967, -1.1170178096967796, -1.0544914405927779, -0.9926899845893506, -0.9323038530833838, -0.8738997056771243, -0.8179298132587759, -0.7647430660461698, -0.7145965399507651, -0.6676668658509565, -0.6240609205901201, -0.5838255765244064, -0.5469564143547018, -0.5134054277790311, -0.48308783213413387, -0.4558881350064581, -0.43166563734860786, -0.41025951375716274, -0.3914935784926724, -0.37518079077013067, -0.36112750097393254, -0.34913739906279073 ], [ -0.3909993889558603, -0.44348311133222973, -0.502917035961745, -0.5691111680246386, -0.641635173149766, -0.7198024301583983, -0.8026654163306088, -0.8890220866914317, -0.9774322973276903, -1.0662438073193716, -1.1536288300334794, -1.2376340573040427, -1.316248987202758, -1.3874983736837738, -1.449562498178977, -1.5009184437386636, -1.5404710186279569, -1.5676186736308877, -1.5822248794371938, -1.584534334335956, -1.5750951129458135, -1.5547068472931416, -1.5243813319407242, -1.4852997010183306, -1.4387607060809176, -1.3861231421161972, -1.3287488965158156, -1.2679527280501428, -1.2049626972384977, -1.1408926665660053, -1.0767263007277996, -1.0133107985785008, -0.9513581069671546, -0.8914513840556209, -0.8340547705956375, -0.7795249228294758, -0.7281231582692362, -0.6800274167485968, -0.6353435281669947, -0.5941155063112791, -0.5563347620190691, -0.5219482558801357, -0.4908656958597505, -0.4629659322357367, -0.4381027145902934, -0.4161099585848729, -0.3968066319877773, -0.3800013204861099, -0.3654964854520588, -0.3530923875775074 ], [ -0.3928211477311674, -0.44616972792935805, -0.506640202279713, -0.5740503562435904, -0.6479715885884411, -0.727712334963156, -0.8123133092562052, -0.9005540168488718, -0.9909692926217593, -1.081875136596089, -1.171404689523594, -1.2575573471274495, -1.3382662487436432, -1.4114910482322938, -1.4753421190161495, -1.5282329817197629, -1.5690286164680392, -1.5971201668054151, -1.6123831287475476, -1.6150738630572044, -1.6057453810945015, -1.5852003631961313, -1.5544583038679136, -1.5147163784471953, -1.467298187104446, -1.4135944854679674, -1.3550035408381973, -1.2928780812027851, -1.2284832679564326, -1.1629673372041354, -1.0973443757325125, -1.0324873922365008, -0.969129317849617, -0.9078695814037809, -0.849184210055991, -0.7934378231750773, -0.7408963074035056, -0.6917393311255388, -0.6460721602194435, -0.6039364749994968, -0.5653200683365706, -0.5301654352890957, -0.4983773516081228, -0.4698295869593494, -0.44437091308915, -0.421830553209399, -0.402023184578992, -0.38475356154911944, -0.36982078159353593, -0.35702218082933546 ], [ -0.39470480230763594, -0.4487684118595764, -0.5100937943846705, -0.5785055512708254, -0.6535770185811872, -0.7346132117288171, -0.820646022053685, -0.9104409350494747, -1.0025137588155395, -1.0951564020846247, -1.18647241873806, -1.2744253383914732, -1.3569052512372706, -1.4318212598579274, -1.4972278505704626, -1.551485693701749, -1.5934255092980338, -1.6224314289037287, -1.6383855904236935, -1.641546370949031, -1.6324611726500058, -1.6119262345894145, -1.580960540136826, -1.5407700536831856, -1.4926967046315553, -1.4381573845105278, -1.3785816716095745, -1.3153560162109528, -1.24977927607754, -1.183031462899969, -1.1161552139591802, -1.0500480981478342, -0.9854632920473593, -0.9230161616418604, -0.863194599229171, -0.8063714001943089, -0.7528174041159442, -0.7027145127751564, -0.6561680153373648, -0.6132178989889493, -0.5738490097747163, -0.5380000624357295, -0.5055715872634239, -0.476432952259501, -0.4504286155726699, -0.42738375246998395, -0.4071093708634904, -0.3894069889792947, -0.3740729076718968, -0.36090207618583603 ], [ -0.39667909488610886, -0.45130264620313487, -0.5132932882099221, -0.5824811480094496, -0.6584414988132331, -0.740477378397196, -0.8276148161717056, -0.9186097910458118, -1.011965197986185, -1.1059566796725946, -1.1986679435517384, -1.2880385904982008, -1.3719300492406228, -1.4482176013459922, -1.5149176526896835, -1.5703533993458283, -1.6133291481714136, -1.6432195148442208, -1.6599027770869892, -1.6636266176849521, -1.6549219142168825, -1.634569804478307, -1.6035814124370993, -1.5631646868588245, -1.5146733585193657, -1.4595442806889032, -1.3992327283906272, -1.3351540103344037, -1.268636676354443, -1.200889387193762, -1.1329810282475636, -1.0658321528123464, -1.0002152172752319, -0.9367610519292204, -0.8759693265351892, -0.8182212170209152, -0.7637929355602427, -0.7128691900323525, -0.6655559696134652, -0.6218923109403349, -0.5818608922236812, -0.5453974407524663, -0.5123990310071567, -0.48273140303057493, -0.4562354499671737, -0.4327330163781967, -0.41203212282908186, -0.3939316960939395, -0.37822584690245964, -0.3647077058177398 ], [ -0.3987666556742365, -0.4537915422899237, -0.5162522259860042, -0.5859828248790783, -0.6625604090399386, -0.7452874467408683, -0.8331871143621503, -0.9250104929681742, -1.0192537890471547, -1.1141843191863348, -1.207875826400323, -1.298256171438191, -1.3831730667209872, -1.4604859691041545, -1.528193567713753, -1.5846006591812332, -1.6284949003998406, -1.6592359620751578, -1.676683444142778, -1.681060138738969, -1.6728702842236474, -1.6528725971492222, -1.6220639940621537, -1.5816480510512883, -1.5329837326445093, -1.4775212993289901, -1.4167355356097233, -1.35206509959301, -1.2848635975629967, -1.2163646491495188, -1.1476606173141806, -1.0796931000336965, -1.0132526045133905, -0.9489847789917003, -0.8874008853193109, -0.8288906479121567, -0.7737360817841884, -0.7221253189081118, -0.6741657944769728, -0.6298964214338872, -0.5892985810276179, -0.5523058994959602, -0.5188128757100229, -0.48868247958891753, -0.4617528632371636, -0.4378433230331015, -0.41675962895865915, -0.3982988055674326, -0.38225341520837075, -0.36841536518052176 ], [ -0.4009820868377305, -0.4562478995311444, -0.5189803582828445, -0.5890158952058212, -0.6659331739203644, -0.7490355192970212, -0.8373463460727573, -0.9296165668955942, -1.02434205841097, -1.119789883406776, -1.2140338322624133, -1.3050023574219074, -1.3905445989100365, -1.4685225333964171, -1.536938150436618, -1.594097820053789, -1.6387823910421846, -1.6703296041279543, -1.6885645051953841, -1.6936715915392817, -1.686119907957678, -1.6666397758678493, -1.63620837505152, -1.5960188462351286, -1.5474286980688368, -1.491894635380853, -1.4309041909899096, -1.3659132234489397, -1.29829512837681, -1.22930422074217, -1.1600530833267095, -1.0915020291340456, -1.024458093638037, -0.9595808911061252, -0.8973929603389486, -0.8382926746577217, -0.7825682635976364, -0.7304119194970481, -0.6819333140984614, -0.6371721253147622, -0.596109379982428, -0.5586775652626021, -0.524769559419425, -0.4942464906254658, -0.4669446577763078, -0.44268164732172766, -0.42126176239465496, -0.40248085284522916, -0.3861306046065617, -0.3720023202924708 ], [ -0.40333051716090373, -0.4586766989892973, -0.5214821407511429, -0.591583882564186, -0.6685619954623145, -0.7517221525994732, -0.8400912054771779, -0.9324247637783039, -1.027224884432743, -1.122766601832368, -1.2171338994355123, -1.3082682208177867, -1.3940351630134902, -1.472317009227679, -1.5411386097476643, -1.5988253069893898, -1.6441588275025012, -1.676448910335364, -1.6954733245906224, -1.7013677048160654, -1.6945591720484738, -1.6757447251651332, -1.6458767842803053, -1.6061321038890737, -1.5578598649201079, -1.5025158618391852, -1.4415930906282548, -1.3765578750465188, -1.30879754271994, -1.239582290055778, -1.1700411797523593, -1.101150510558538, -1.033732009805017, -0.968458173296916, -0.9058623412692886, -0.846351536941146, -0.790220565868412, -0.7376663049646159, -0.688801469123551, -0.6436674254694245, -0.6022458368424036, -0.5644690675780287, -0.5302293863867988, -0.49938706238896735, -0.47177747918683244, -0.44721739580050757, -0.425510469814825, -0.4064521345874177, -0.3898338957398574, -0.3754470880584616 ], [ -0.40580678603007414, -0.4610742040039153, -0.5237557658031183, -0.5936874975148181, -0.670450781607075, -0.7533552292216374, -0.8414344350766505, -0.9334536901220754, -1.027927866418608, -1.1231483074536222, -1.2172193849168196, -1.308107800007627, -1.393710054609325, -1.4719449698960718, -1.5408765623660146, -1.5988617703500634, -1.6446880119994387, -1.67763387072972, -1.6974228620020764, -1.7041352185417709, -1.698151325468513, -1.6801307293457928, -1.6509963547576285, -1.6119026395187515, -1.5641834045724914, -1.509285876821977, -1.4487008202224354, -1.3838978108491018, -1.3162717477280659, -1.2471034037422435, -1.1775341318688555, -1.1085530975039792, -1.040994562206746, -0.9755425670005684, -0.9127405909537978, -0.8530041780114153, -0.796634988774668, -0.7438351647303229, -0.6947212557042727, -0.6493372489238162, -0.607666454976816, -0.569642161995652, -0.5351570750850712, -0.5040716229332705, -0.47622124615385053, -0.4514227899299911, -0.42948011433727473, -0.41018901635899374, -0.39334153448678055, -0.3787296851504355 ], [ -0.40839534763085217, -0.46342777110540256, -0.5257928426940615, -0.5953241372996045, -0.6716044000059023, -0.7539488780477033, -0.8414012933843229, -0.9327416579631784, -1.0265043237354916, -1.1210052516892153, -1.2143792186239348, -1.304629929341521, -1.3896980107579608, -1.4675525545834347, -1.5363088569807244, -1.594363230163557, -1.64051169232197, -1.6740020213676483, -1.6945023768565342, -1.702035289323631, -1.69693160490452, -1.6798100513269068, -1.6515595830684098, -1.613306460413985, -1.5663620738609274, -1.5121572881520755, -1.4521727048794335, -1.3878736214311365, -1.3206557739275777, -1.2518048099661847, -1.1824697935174275, -1.1136492784441523, -1.046187589355862, -0.9807787152263391, -0.9179754038478405, -0.8582014332244423, -0.8017654846185323, -0.7488754677052636, -0.699652512418449, -0.6541441333107252, -0.61233629362081, -0.5741642566676888, -0.5395222219738782, -0.5082718123838178, -0.4802495150794034, -0.4552731916425292, -0.4331477674354275, -0.41367019530459304, -0.3966337689597893, -0.38183184219424093 ], [ -0.41107090206504737, -0.4657163851515097, -0.5275787513790369, -0.5964879515308623, -0.6720283269539973, -0.7535225538076596, -0.8400278811259062, -0.9303440285144511, -1.0230313611856625, -1.11643850295352, -1.208740131448915, -1.2979876885036061, -1.3821772886052872, -1.4593389741869984, -1.5276473686350673, -1.585542421866604, -1.631831121055218, -1.6657338004045177, -1.6868667089455198, -1.6951960399759858, -1.691002289934238, -1.674860868789348, -1.6476226758808914, -1.6103801651847984, -1.5644153870737934, -1.5111351318169524, -1.452001891150763, -1.3884690313126917, -1.3219261801528945, -1.253657884842958, -1.1848160363706288, -1.1164047908680481, -1.049275774810389, -0.9841310696066896, -0.9215316020999607, -0.8619089184457018, -0.8055787452933442, -0.7527551574590919, -0.7035645325717511, -0.6580587658144472, -0.6162274425825269, -0.5780088312753677, -0.5432996723087415, -0.5119638124126777, -0.48383977412860535, -0.45874736700484475, -0.436493446449024, -0.4168769149933823, -0.3996930445062057, -0.38473718118056044 ], [ -0.41379967596983736, -0.46791184263799324, -0.5290936052855487, -0.5971704336029454, -0.6717286929898312, -0.7521003411975384, -0.837359484864825, -0.9263303453273617, -1.0176055003564741, -1.1095737383210538, -1.2004582410949944, -1.2883674658333073, -1.371362129894528, -1.4475408514380566, -1.5151424112991374, -1.5726527184497647, -1.618892442675374, -1.6530599647536377, -1.6747259900445015, -1.6838044383824906, -1.6805264263464093, -1.665422517643135, -1.6393020453515048, -1.6032184718827156, -1.5584179890839933, -1.506275923017102, -1.4482289259514194, -1.3857108732476515, -1.320098309800862, -1.2526685772102357, -1.1845713092721295, -1.1168122390788202, -1.0502472827156575, -0.9855845155874808, -0.9233917321918343, -0.8641075873922095, -0.8080547149778612, -0.755453618677775, -0.7064364853390933, -0.6610603614985063, -0.6193193611755078, -0.5811557404291271, -0.5464697919884617, -0.5151285904016616, -0.4869736633114853, -0.46182768545541664, -0.43950029579017347, -0.41979313096219006, -0.4025041555222023, -0.38743135508447746 ], [ -0.41654120741180833, -0.469980434797848, -0.5303136849822763, -0.5973614279569712, -0.6707126648760129, -0.7497104979108352, -0.8334490569672262, -0.9207815185501527, -1.0103383315448802, -1.1005551407521403, -1.18971103686436, -1.2759790420227688, -1.3574912803818797, -1.4324199377957507, -1.4990706079435023, -1.5559766980162406, -1.6019759157935116, -1.6362514374864994, -1.6583363459291667, -1.6680980523632591, -1.6657206822509472, -1.6516894158145161, -1.6267692411137742, -1.591970087212512, -1.5484963783207062, -1.497685136484562, -1.4409398885032756, -1.379667763073137, -1.3152254035391393, -1.2488768631953748, -1.1817643510825047, -1.1148909955439836, -1.049113791510749, -0.9851444947632716, -0.9235562428616777, -0.8647939409017943, -0.8091868135058833, -0.7569619027977104, -0.7082576359124038, -0.663136873236141, -0.6215990753855299, -0.5835913970643445, -0.549018637215382, -0.5177520560657893, -0.4896371191410509, -0.46450025372264736, -0.44215471134226203, -0.4224056267032107, -0.40505435396168155, -0.3899021496266676 ], [ -0.4192504494028876, -0.4718849397525652, -0.5312131616387177, -0.5970504003974364, -0.6689890609096213, -0.7463852064147949, -0.8283558989118234, -0.9137872494611842, -1.001352520957914, -1.0895398947310688, -1.1766903918976954, -1.2610473512810823, -1.340818996548112, -1.4142540415307456, -1.4797262529855648, -1.5358179279627333, -1.5813877258394897, -1.6156109085630381, -1.6379914246909828, -1.6483568121090102, -1.6468476018337588, -1.6339039752592246, -1.610244621198592, -1.5768321879424598, -1.5348242077121477, -1.485513298393033, -1.4302632144741545, -1.3704475767864406, -1.307396639463933, -1.2423552577327368, -1.176453086475385, -1.1106864026473329, -1.0459099340946363, -0.9828366271433325, -0.922043243795131, -0.8639798858533686, -0.8089818674082745, -0.7572827097466348, -0.7090273619115273, -0.6642850310328177, -0.6230612316725099, -0.5853088348393818, -0.5509380215231595, -0.5198251305506704, -0.491820444236865, -0.4667549850431314, -0.44444640882127207, -0.42470408092819034, -0.40733341536184664, -0.3921395479326448 ], [ -0.4218799966541199, -0.4735867240020024, -0.5317659197436752, -0.5962278065194679, -0.6665690781232236, -0.7421604742442977, -0.8221445643914065, -0.9054437984383192, -0.9907783613637446, -1.076693527342583, -1.161596836406007, -1.2438059972915159, -1.3216082559294282, -1.393330363896148, -1.457414921527703, -1.5124945960060179, -1.5574532165300061, -1.591465420719555, -1.6140144211935012, -1.6248947765593278, -1.624207446257794, -1.6123487881190455, -1.5899900821204016, -1.5580438302383608, -1.5176164518764987, -1.4699509390448442, -1.4163654186632837, -1.3581938947829544, -1.2967342286181154, -1.2332064796640891, -1.1687227760254058, -1.1042683264522903, -1.0406921811290262, -0.9787058590255856, -0.9188878628586405, -0.86169225597451, -0.8074597570803697, -0.7564301317328153, -0.708754970387042, -0.6645102140744906, -0.6237080101559324, -0.586307651957914, -0.5522254824188854, -0.521343730152392, -0.4935183039516676, -0.46858560568257934, -0.44636843800601045, -0.4266810878914018, -0.4093336640157069, -0.39413575954543323 ], [ -0.4243822571837387, -0.47504777310206403, -0.5319473077616401, -0.5948864078526811, -0.663467014223422, -0.7370761096034965, -0.8148839593396282, -0.8958521217182583, -0.9787509223978468, -1.0621861395999155, -1.144635048884076, -1.2244922864959007, -1.3001256447779153, -1.3699404333364904, -1.4324483810796136, -1.4863340964424547, -1.5305108134679615, -1.5641594524624767, -1.5867503876112263, -1.598051936489397, -1.5981298209087562, -1.5873383816939766, -1.5663011857525129, -1.5358786308482135, -1.4971227663407505, -1.4512226991681092, -1.3994459688928815, -1.343081624107887, -1.283389737035537, -1.2215604062035506, -1.1586835262586026, -1.0957291434399827, -1.0335372287533269, -0.9728151824394111, -0.9141412361622296, -0.8579720200766783, -0.8046527991592843, -0.7544291734640906, -0.7074593264088874, -0.6638261640769861, -0.6235489040418807, -0.5865938420539418, -0.5528841524035352, -0.522308668782638, -0.4947296536547471, -0.46998960199942486, -0.44791714574035524, -0.428332133369663, -0.41104995960262836, -0.39588521582649894 ] ], "zauto": true, "zmax": 1.7041352185417709, "zmin": -1.7041352185417709 }, { "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.7896743460309262, 0.7888531118737283, 0.7880486434186802, 0.7872648207325755, 0.7865052237608724, 0.7857732212419309, 0.7850720640930433, 0.7844049641554186, 0.7837751408301346, 0.7831858224904988, 0.7826401959613073, 0.7821413047578938, 0.7816919039251338, 0.7812942850141956, 0.7809500881035307, 0.7806601184419267, 0.7804241834896006, 0.7802409626151106, 0.7801079175665763, 0.7800212482247362, 0.7799758959628236, 0.779965596591778, 0.7799829861566238, 0.7800197649988948, 0.780066927356064, 0.7801150640793222, 0.7801547437743982, 0.7801769722365846, 0.7801737215186341, 0.7801385090537287, 0.7800669952394689, 0.7799575564535741, 0.7798117814775012, 0.7796348345591007, 0.7794356293814959, 0.7792267660594635, 0.7790241982891786, 0.7788466193708782, 0.7787145824174821, 0.7786493990188494, 0.7786718884311126, 0.7788010719973534, 0.7790529211125524, 0.7794392686589038, 0.7799669821327978, 0.7806374724677382, 0.781446578823984, 0.7823848310990231, 0.7834380541919359, 0.7845882464437778 ], [ 0.7881377976183223, 0.7872383596154718, 0.7863578647952972, 0.785500171233359, 0.7846687742293669, 0.7838669424819706, 0.7830978619750976, 0.782364762196261, 0.7816710010339066, 0.7810200900293763, 0.7804156498060616, 0.7798612951373877, 0.7793604586242218, 0.7789161697429203, 0.7785308108840889, 0.7782058733603049, 0.777941734420895, 0.7777374719887329, 0.7775907285178296, 0.7774976305601963, 0.7774527675347458, 0.7774492324009546, 0.7774787282643444, 0.7775317474486706, 0.7775978318287685, 0.7776659236619339, 0.7777248134822982, 0.7777636851236338, 0.7777727476865607, 0.7777439311474327, 0.7776716078794855, 0.7775532886382868, 0.7773902307566096, 0.7771878905224193, 0.7769561527734076, 0.77670927986512, 0.7764655397942295, 0.7762464987984505, 0.7760759954181673, 0.7759788477285071, 0.7759793790489156, 0.776099875048135, 0.7763591019991141, 0.7767710182508185, 0.7773437970148662, 0.7780792492151092, 0.7789726940921045, 0.7800132783829472, 0.7811846991772581, 0.7824662475925489 ], [ 0.7864455364259003, 0.7854600659508175, 0.7844959211016947, 0.7835568744087198, 0.7826462621579143, 0.7817671796545498, 0.7809226883522926, 0.7801160016203043, 0.7793506177118543, 0.7786303750354995, 0.7779594151779753, 0.7773420516161823, 0.7767825545856427, 0.7762848730423699, 0.7758523214087196, 0.7754872609920916, 0.7751908037748677, 0.7749625608157406, 0.7748004505577065, 0.7747005758756943, 0.7746571743457219, 0.7746626448239528, 0.7747076548210653, 0.7747813362097142, 0.7748715797132227, 0.7749654394111287, 0.7750496555145208, 0.7751112960189239, 0.7751385056282246, 0.775121334647911, 0.7750526032722, 0.7749287402577688, 0.774750521993549, 0.774523630925855, 0.7742589532750808, 0.7739725464435022, 0.7736852270362696, 0.773421760417701, 0.7732096702173561, 0.7730777276627079, 0.7730542211029228, 0.7731651397208475, 0.7734324262899656, 0.773872457169882, 0.77449489120838, 0.7753019938026979, 0.7762884925530816, 0.777441964036152, 0.7787436959265561, 0.7801699232192193 ], [ 0.7845825684845672, 0.7835023740482586, 0.7824461048051833, 0.7814173704843679, 0.7804192584867763, 0.7794546025044978, 0.7785262683045653, 0.777637413649097, 0.7767916811485137, 0.7759932908786369, 0.775247012718059, 0.7745580144750231, 0.7739315982627565, 0.7733728514767654, 0.7728862478874603, 0.7724752375827733, 0.7721418618881943, 0.7718864223432008, 0.7717072236238643, 0.7716004015728981, 0.7715598414302569, 0.7715771891490661, 0.7716419602095762, 0.7717417542072732, 0.7718625874100641, 0.7719893569225753, 0.7721064469584473, 0.7721984788681583, 0.7722511921148694, 0.7722524246839858, 0.7721931407805154, 0.7720684340219125, 0.7718784187523197, 0.7716289134795022, 0.7713318211930427, 0.7710051231762927, 0.7706724266191446, 0.7703620413342146, 0.7701056050209373, 0.7699363258085953, 0.7698869594413291, 0.7699876793631747, 0.7702640238163407, 0.7707351088643501, 0.7714122768755576, 0.7722983074527622, 0.7733872575212598, 0.7746649283638389, 0.7761098906499413, 0.7776949441513451 ], [ 0.7825327357259116, 0.7813481764470125, 0.7801903722990698, 0.7790626769281872, 0.7779678207353887, 0.7769082700342997, 0.7758866101187087, 0.774905897002383, 0.7739699243988233, 0.7730833623895299, 0.772251740853166, 0.7714812714455392, 0.7707785232366957, 0.7701499853833166, 0.7696015624316325, 0.769138052313051, 0.7687626538337621, 0.7684765412013074, 0.768278530864552, 0.7681648541193414, 0.7681290405255548, 0.7681619138786836, 0.768251704227278, 0.7683842844784606, 0.768543545565157, 0.768711926697288, 0.7688711141733825, 0.7690029121321572, 0.7690902716179413, 0.7691184421060147, 0.7690761850445893, 0.7689569655265485, 0.7687600195390067, 0.7684911837009318, 0.7681633747699488, 0.7677966194732836, 0.7674175623466696, 0.7670584198020506, 0.766755400309168, 0.7665466688835794, 0.7664699922791967, 0.7665602508978528, 0.7668470354623677, 0.767352553337547, 0.7680900468738984, 0.7690628752496823, 0.7702643385872122, 0.7716782398438646, 0.773280099610583, 0.7750388741484713 ], [ 0.7802786925777885, 0.7789790878778221, 0.7777093135644152, 0.7764723551718775, 0.7752704564678091, 0.7741055898143673, 0.772979959030213, 0.7718964643364747, 0.7708590606664931, 0.7698729527686853, 0.7689445915509229, 0.7680814626731247, 0.7672916859950599, 0.7665834683543857, 0.7659644682585042, 0.7654411370647457, 0.7650180969825191, 0.7646976039285092, 0.7644791268016883, 0.7643590587093342, 0.7643305640958926, 0.7643835609596492, 0.7645048394431206, 0.7646783248461348, 0.7648855007569277, 0.7651060122850406, 0.7653184667927223, 0.7655014381816257, 0.7656346608828295, 0.7657003733470897, 0.7656847415777169, 0.7655792653313199, 0.765382047312785, 0.7650987928610578, 0.7647434074146365, 0.7643380737468997, 0.7639127217675913, 0.763503850307646, 0.7631527204005709, 0.7629030082012244, 0.7627980750702686, 0.7628780723812943, 0.7631771382475193, 0.7637209529937439, 0.764524894301922, 0.7655929723413876, 0.7669176377813528, 0.7684804552283463, 0.7702535380914054, 0.7722015638324706 ], [ 0.7778018960829493, 0.7763754323893561, 0.7749821371478237, 0.7736244938271394, 0.7723041044938763, 0.7710222961964753, 0.769780770818646, 0.7685822091487927, 0.7674307413554802, 0.7663322109782493, 0.7652941860677358, 0.7643257050628847, 0.7634367806031978, 0.7626377155016248, 0.7619383061812806, 0.7613470167518722, 0.7608702012443719, 0.7605114350624993, 0.7602709945485315, 0.7601455018175564, 0.7601277361433447, 0.7602066064569114, 0.7603672821636038, 0.7605914886845053, 0.7608579849570296, 0.7611432470382383, 0.7614223803538646, 0.7616702706001983, 0.7618629600860161, 0.7619792051069089, 0.7620021351851425, 0.7619209018330229, 0.76173217794672, 0.7614413534042722, 0.7610632714469588, 0.7606223665410725, 0.7601520991176471, 0.7596936358140474, 0.7592937932936101, 0.7590023440521729, 0.7588688649750209, 0.758939381800689, 0.759253111597895, 0.7598396187422688, 0.7607166703918304, 0.7618890055984279, 0.7633481274322902, 0.7650731068947705, 0.767032271735999, 0.769185561967317 ], [ 0.7750826126989282, 0.7735162480894017, 0.7719866739606, 0.7704957121407056, 0.7690441378175342, 0.7676324517112205, 0.7662617097757171, 0.7649342978404194, 0.7636545395658191, 0.7624290443611853, 0.7612667353080402, 0.7601785404317917, 0.7591767764769045, 0.7582742945383388, 0.7574834843500995, 0.7568152442602912, 0.7562780162790229, 0.7558769634961219, 0.7556133373112793, 0.7554840524659973, 0.7554814662051087, 0.7555933485656213, 0.755803034249582, 0.7560897591680039, 0.7564292000777232, 0.7567942464688567, 0.757156033984602, 0.7574852550287403, 0.7577537352018674, 0.7579362272960709, 0.7580123333101693, 0.7579684256039545, 0.7577994068204076, 0.7575101295366153, 0.7571162946139576, 0.7566446647326199, 0.7561324683763325, 0.7556259298465824, 0.7551779406050554, 0.7548449807248644, 0.7546834965031481, 0.7547460272594572, 0.7550774346152385, 0.7557116058904173, 0.7566689700515057, 0.7579550798578681, 0.7595603887415523, 0.7614612064582573, 0.763621679388817, 0.7659965334722217 ], [ 0.7720999455380545, 0.7703793134118607, 0.768699404008943, 0.7670611880435952, 0.7654643929662129, 0.7639084765661658, 0.7623936762107822, 0.7609219922727265, 0.7594979644286344, 0.7581291218095398, 0.75682602991715, 0.7556019122975263, 0.7544718837624954, 0.7534518839049243, 0.7525574353082928, 0.7518023640811748, 0.7511976099950067, 0.7507502238535269, 0.7504626095254215, 0.7503320282345755, 0.7503503532420321, 0.7505040502458533, 0.7507743634753989, 0.75113770487163, 0.7515662653830717, 0.752028883609374, 0.7524922098849649, 0.7529221893544181, 0.7532858561961479, 0.7535533874515236, 0.7537003159305474, 0.7537097550944557, 0.7535744516350593, 0.7532984592348149, 0.75289822382077, 0.7524028895232986, 0.7518536775654315, 0.7513022581291765, 0.7508081260941663, 0.7504350996407538, 0.7502471749887586, 0.7503040745721044, 0.7506568998837864, 0.7513443250212865, 0.7523897300356991, 0.7537995736468739, 0.7555631560307083, 0.7576537498289411, 0.7600309130318588, 0.7626436703726632 ], [ 0.7688318865649674, 0.7669411995818427, 0.7650955109277358, 0.7632947159174507, 0.761537231111763, 0.7598212119495173, 0.7581458694548815, 0.756512708946289, 0.7549265124407202, 0.7533959135115966, 0.7519334658457896, 0.7505551766266192, 0.7492795511790954, 0.7481262623665692, 0.7471146045080888, 0.7462619087184781, 0.7455820826168811, 0.7450843976241869, 0.7447725930260741, 0.7446443121895333, 0.7446908463709669, 0.7448971441054305, 0.7452420505291004, 0.7456987650255601, 0.7462355359584895, 0.7468166351327054, 0.7474036615890428, 0.7479572091423357, 0.7484388955662997, 0.7488136995076264, 0.7490524930360837, 0.7491346027050613, 0.7490501883104981, 0.7488022023260679, 0.748407688513567, 0.7478981985065881, 0.7473191525397644, 0.7467280461614834, 0.746191507518153, 0.7457813339476801, 0.7455697700945708, 0.7456244135703026, 0.7460032244661935, 0.746750148091678, 0.7478918197960428, 0.7494357044847973, 0.7513698470537026, 0.7536642046563088, 0.7562733365662454, 0.759140078489825 ], [ 0.7652553992191465, 0.7631773549085525, 0.7611489701503082, 0.7591688001640541, 0.7572336373642528, 0.7553400238257071, 0.7534858933138694, 0.7516721219146653, 0.7499037629125997, 0.7481907741930269, 0.746548111897512, 0.7449951524837914, 0.7435545016147742, 0.742250334760461, 0.7411064745102789, 0.7401444319095082, 0.7393816205008649, 0.7388298987005889, 0.7384945236240525, 0.7383735269767403, 0.7384574695782598, 0.7387295074395485, 0.7391657111019442, 0.7397356130981163, 0.7404030007765591, 0.7411270062518545, 0.7418635581329702, 0.7425672441835811, 0.7431935915219405, 0.7437017093442864, 0.7440571699864186, 0.7442349391992171, 0.7442221154508413, 0.7440202075392129, 0.7436466739870636, 0.7431354694770601, 0.7425363954256835, 0.7419131355410581, 0.741339972495998, 0.7408973233978694, 0.7406663866358049, 0.7407233392137121, 0.7411336333359292, 0.7419469845085019, 0.7431935996407096, 0.7448820586323212, 0.7469990548473019, 0.7495109565972291, 0.7523669211765917, 0.7555031192030582 ], [ 0.7613465381047557, 0.7590622277261948, 0.756832677742875, 0.7546547918642769, 0.7525233658273834, 0.750432955128109, 0.7483799121501354, 0.7463643177717029, 0.7443915258385031, 0.742473077885368, 0.7406268267567423, 0.7388762193239179, 0.7372488113394652, 0.7357741988988553, 0.7344816291999515, 0.733397582637581, 0.7325435937276169, 0.7319345078039496, 0.7315772733574905, 0.7314702723284187, 0.73160311766882, 0.731956815551625, 0.7325042017903213, 0.7332106076630204, 0.7340347691298581, 0.7349300425509866, 0.7358460112387595, 0.7367305518323347, 0.7375323796837041, 0.7382040188798796, 0.7387050601330354, 0.7390054932264273, 0.7390888413475846, 0.7389547895549454, 0.7386209926170282, 0.7381237709326839, 0.7375174596586394, 0.7368722681163625, 0.7362706348204676, 0.7358022236068698, 0.7355578848518601, 0.7356230780992821, 0.7360713847821628, 0.7369587961668334, 0.7383194151542831, 0.7401630547284521, 0.7424749715604947, 0.74521768632526, 0.748334571092026, 0.7517546823332327 ], [ 0.757080613818287, 0.7545694362608758, 0.7521186284029328, 0.7497230772899438, 0.7473751394904534, 0.7450669357548901, 0.7427928672891502, 0.7405520125723881, 0.7383500519916987, 0.7362004136710928, 0.7341244342625688, 0.7321504687136252, 0.7303120394627365, 0.7286452590932685, 0.7271858625216692, 0.7259662238616499, 0.7250127013137393, 0.7243435600624702, 0.7239675935209003, 0.7238834321675659, 0.7240794307565434, 0.7245339816223012, 0.7252161187166324, 0.7260863396684023, 0.7270976542778044, 0.7281969368353771, 0.7293266923765958, 0.730427332346763, 0.7314399964940609, 0.7323098695582021, 0.7329898429322744, 0.7334442813209644, 0.7336525858185384, 0.7336122051157195, 0.7333407387098881, 0.7328768015168659, 0.7322793804172776, 0.7316255134075135, 0.7310062634926232, 0.7305211391205022, 0.7302713171362668, 0.7303522254963897, 0.7308462016475246, 0.731816014716858, 0.7332999912554103, 0.7353093055059742, 0.7378277099351535, 0.7408136450346325, 0.7442043500741814, 0.7479213634180196 ], [ 0.752432412685701, 0.7496719954531555, 0.7469781528974447, 0.7443433288215628, 0.7417569158348748, 0.7392080615986067, 0.7366887652992096, 0.7341968424194518, 0.731738316909341, 0.7293288536426926, 0.7269939673223914, 0.7247679196425311, 0.7226914152986482, 0.7208083924172193, 0.7191623365214471, 0.7177925998753955, 0.716731167687382, 0.7160001897501036, 0.715610423359624, 0.7155605573825036, 0.7158372546002383, 0.7164156914650737, 0.7172603978539034, 0.7183262852323962, 0.7195598630184229, 0.7209007387516244, 0.722283545997356, 0.723640430630234, 0.7249041564747934, 0.7260117847982458, 0.7269087642977289, 0.7275531620833532, 0.7279196873482493, 0.7280031152328531, 0.7278207104106047, 0.727413278111972, 0.7268445363662688, 0.726198611434025, 0.7255756130012552, 0.7250854455052299, 0.7248402436064312, 0.7249460530844003, 0.7254945671310097, 0.7265558192022773, 0.728172684346326, 0.7303578372452456, 0.7330934841352164, 0.7363337928890761, 0.740009576389848, 0.744034516808004 ], [ 0.747376483158893, 0.7443426128245928, 0.7413822273190758, 0.7384848309515134, 0.7356362311825122, 0.732821956023421, 0.7300310519234449, 0.7272597417261786, 0.7245143927275379, 0.7218133065589578, 0.7191869929471676, 0.7166768083858446, 0.7143320926993438, 0.712206174753363, 0.7103517939455272, 0.708816556288091, 0.7076389939087402, 0.7068456359381556, 0.7064492690958222, 0.7064483302223373, 0.7068271940663141, 0.7075570415249786, 0.7085970260065702, 0.7098955729091605, 0.7113917994823846, 0.71301717422771, 0.7146976042156221, 0.71635612746046, 0.7179163038996007, 0.719306269210733, 0.720463274041919, 0.7213384062782499, 0.7219011039866492, 0.7221430184961182, 0.7220807800341658, 0.7217572501263475, 0.7212409162849364, 0.7206232005110076, 0.7200136204856363, 0.7195329624572712, 0.7193048853588676, 0.7194466437962385, 0.7200598400123365, 0.7212222284095399, 0.7229815474718032, 0.7253521235407108, 0.7283146091352578, 0.7318187630703409, 0.7357887529481135, 0.7401301556150617 ], [ 0.7418875028561818, 0.7385540678338499, 0.7353018689677047, 0.7321168965236811, 0.728980639322466, 0.7258742297676266, 0.7227830880863688, 0.7197014259016561, 0.7166359246337093, 0.7136079734829861, 0.7106540335541662, 0.7078239662383894, 0.7051774823085143, 0.7027791749854965, 0.7006928313766413, 0.6989758168628255, 0.6976742670448973, 0.6968196126187168, 0.6964266577890241, 0.6964931162018915, 0.6970002670179752, 0.6979142884840168, 0.6991878712676206, 0.7007618739699514, 0.702566990682728, 0.7045255806027667, 0.7065539066290824, 0.7085650213350634, 0.7104724372154101, 0.7121945599885876, 0.7136596928208757, 0.7148112722201201, 0.7156128942636487, 0.7160526385078589, 0.716146192428119, 0.7159383159510221, 0.715502262717312, 0.7149368981715678, 0.7143614339695883, 0.7139079383698118, 0.7137120725808944, 0.7139028084225345, 0.7145921424321573, 0.715865960716615, 0.7177771621871843, 0.7203418892173731, 0.7235392777290139, 0.7273146145623534, 0.7315853003711641, 0.736248671158519 ], [ 0.7359407426678282, 0.7322796917830889, 0.7287086363913728, 0.7252093911576915, 0.7217582628123052, 0.7183310581947062, 0.7149087474711812, 0.7114829984415797, 0.7080607320961788, 0.7046669251567172, 0.7013451030694711, 0.6981553015198256, 0.6951696752305007, 0.6924663275448992, 0.6901222400098393, 0.6882063219551215, 0.6867735312221, 0.6858607468250859, 0.6854846705395319, 0.6856416095197355, 0.6863086661013392, 0.687445718917243, 0.6889976415782341, 0.6908964236073516, 0.6930631401609844, 0.6954099615280501, 0.6978425266139404, 0.7002629992639481, 0.7025740014539067, 0.7046834226813691, 0.7065098978905239, 0.7079885729903288, 0.7090766619792587, 0.7097582466019297, 0.7100477697006501, 0.7099917168752455, 0.7096680646261138, 0.7091832036671274, 0.708666236494945, 0.7082608076926927, 0.7081149457809239, 0.7083697399067798, 0.7091479748614647, 0.7105440160279001, 0.7126161930208655, 0.7153826428801423, 0.7188210773527434, 0.7228723403996982, 0.7274470647294098, 0.7324343487490469 ], [ 0.7295126468809063, 0.7254939681221602, 0.7215752540749204, 0.7177333868709806, 0.7139384785135807, 0.7101598981133868, 0.70637315866241, 0.7025667061750742, 0.6987475590877951, 0.6949448251385566, 0.6912103806543985, 0.6876164062684971, 0.6842499750334609, 0.6812053961070614, 0.6785754228523861, 0.6764426342094791, 0.6748722243124253, 0.6739070885495586, 0.6735655598910297, 0.6738415784763745, 0.6747066364056241, 0.6761126477422991, 0.677994979840642, 0.6802751800970424, 0.6828633143681502, 0.685660163174508, 0.6885597021422893, 0.6914522909861646, 0.6942288397161425, 0.6967859793862765, 0.6990320130792449, 0.7008932186677926, 0.7023199461384557, 0.7032918993599133, 0.7038220000501368, 0.703958284240547, 0.7037833725900038, 0.703411193045696, 0.7029808344121188, 0.7026476866057743, 0.7025723732271569, 0.7029083666384831, 0.7037895187574212, 0.7053189406946773, 0.7075606271446186, 0.7105349036699649, 0.7142182162829808, 0.7185471056141538, 0.7234255791472523, 0.7287346639095756 ], [ 0.7225815507367476, 0.7181732758065078, 0.7138763853154967, 0.7096619691316525, 0.7054927622929787, 0.7013303699602722, 0.6971436187275752, 0.6929168707217834, 0.6886570023160813, 0.6843978279603997, 0.6802010503127827, 0.6761533132876612, 0.6723595596127703, 0.6689335448430537, 0.6659868996155759, 0.6636184186963825, 0.6619051851637011, 0.6608966970693211, 0.6606124572495001, 0.6610427185314628, 0.6621514781088386, 0.6638805549587125, 0.6661537040201283, 0.6688801278694441, 0.6719572641266001, 0.6752731698111867, 0.6787090647061554, 0.6821425959457349, 0.6854521893701712, 0.6885225520577078, 0.6912510835661911, 0.6935547128222271, 0.6953765345570563, 0.6966915691241204, 0.6975109887150892, 0.6978842175829637, 0.6978984137583291, 0.6976749831376083, 0.6973629849602968, 0.697129580792518, 0.6971480571564584, 0.6975843765324888, 0.6985835986921509, 0.7002577482147155, 0.702676674152668, 0.7058631002536441, 0.709792441139234, 0.7143972011419578, 0.7195750699175795, 0.7251993537403719 ], [ 0.7151285589570667, 0.7102968009577294, 0.7055895797587824, 0.7009712247580283, 0.69639572122979, 0.691815334845063, 0.6871907092714387, 0.6825010290213898, 0.677752652071887, 0.6729846879330994, 0.6682703415158368, 0.6637134360797988, 0.6594403006647287, 0.655588038663847, 0.6522909141933351, 0.6496670070994919, 0.6478072380396571, 0.646768309974355, 0.6465701781190912, 0.6471976229178446, 0.648604685429114, 0.6507203717449725, 0.6534542010435275, 0.656700729219566, 0.660342880557086, 0.6642545122364532, 0.6683029540635288, 0.6723522656840818, 0.6762677016710276, 0.6799214970173687, 0.6831997102736111, 0.686009578038297, 0.6882866768665858, 0.6900011448899483, 0.6911622504463772, 0.6918206752369593, 0.6920679899059027, 0.6920329492949596, 0.6918744490763508, 0.6917712920161339, 0.6919093160830737, 0.6924668999793273, 0.6936002931907073, 0.6954304866927716, 0.6980333193380458, 0.7014341384136522, 0.7056076453776693, 0.7104827167280151, 0.715951213222051, 0.7218792720364109 ], [ 0.7071386101804141, 0.7018476440977429, 0.6966964245602705, 0.6916414409257143, 0.6866263448429925, 0.681592199557889, 0.6764896502515106, 0.671291321014363, 0.6660024867519778, 0.6606681219603032, 0.6553748147087879, 0.6502467332513577, 0.6454357769755882, 0.6411071009412203, 0.6374221648906632, 0.6345220593141863, 0.6325138639216132, 0.6314621042479502, 0.6313861365774052, 0.6322628848257732, 0.634033237151342, 0.6366099299073711, 0.6398849843907597, 0.6437355281248378, 0.6480277811396157, 0.652619776642943, 0.6573637989912323, 0.6621095158683903, 0.6667084549408608, 0.6710199987835755, 0.6749186119796727, 0.6783016803402374, 0.6810971699793552, 0.6832702808549216, 0.6848283256063631, 0.6858231645593903, 0.6863506506994402, 0.6865466936035285, 0.6865797702663684, 0.6866400279179228, 0.6869255507470299, 0.6876268619964566, 0.6889112072234168, 0.6909084685630013, 0.6937005484886416, 0.6973156576637813, 0.7017281913157721, 0.7068639569854352, 0.7126096675594799, 0.7188250534277867 ], [ 0.698601752399544, 0.692814151162553, 0.6871839296957064, 0.681658547593564, 0.6761695093622133, 0.6706444857465428, 0.6650219308765506, 0.6592661679776037, 0.6533805693835074, 0.6474164790481849, 0.6414759466613121, 0.6357071509569578, 0.6302925293061078, 0.6254309671081539, 0.6213166852097557, 0.618118341513834, 0.6159619731498129, 0.6149205639230987, 0.6150113865906651, 0.6162003521047738, 0.6184110606601468, 0.6215355937148143, 0.6254444275350879, 0.6299939084856646, 0.6350310170029281, 0.6403961940406254, 0.6459255347856698, 0.6514536317987428, 0.6568179211861604, 0.6618647821237214, 0.6664570758480127, 0.6704824173590005, 0.6738612868530566, 0.6765540707917669, 0.6785662062282816, 0.679950726669503, 0.6808076456496952, 0.68127977531598, 0.6815447990064508, 0.6818037414807343, 0.6822664262644742, 0.683135041349146, 0.6845874483958501, 0.6867622079462885, 0.6897472919300973, 0.693574025942341, 0.6982169949772965, 0.7035996490255118, 0.7096044283539619, 0.716085630128784 ], [ 0.6895146526372312, 0.6831914956172651, 0.6770461778673551, 0.6710158362402372, 0.6650177702732478, 0.6589637014893059, 0.6527772601986012, 0.6464122902743621, 0.6398691024509998, 0.633205780357141, 0.6265420847611171, 0.6200544129471892, 0.6139616206473871, 0.6085031866276521, 0.6039129141321539, 0.6003926483059641, 0.5980908014679885, 0.597089477234698, 0.5974018178717311, 0.5989785667047977, 0.6017207021683091, 0.6054941013411543, 0.610142689382103, 0.6154980081812902, 0.621384886937967, 0.6276242810701045, 0.6340350166652935, 0.64043611885205, 0.6466508342123527, 0.6525126910905686, 0.6578732494067148, 0.6626107304359778, 0.6666385180921588, 0.6699125286573706, 0.6724365642950828, 0.6742649203156655, 0.6755016718128901, 0.6762962327580523, 0.6768350034963591, 0.6773292515933034, 0.6779998312405003, 0.679059905144126, 0.6806973812567668, 0.6830591439797193, 0.6862391679767055, 0.6902721522790125, 0.6951334514128964, 0.7007450153249339, 0.7069860730043221, 0.7137066631398328 ], [ 0.6798823592321508, 0.6729835352681479, 0.666286266727928, 0.659715985925867, 0.6531734773108621, 0.6465515534955832, 0.6397558817103989, 0.6327271176890069, 0.6254609056449312, 0.6180222067895595, 0.6105508573493598, 0.6032562492708186, 0.5964005879559773, 0.5902722460416625, 0.5851530111621112, 0.5812849094572011, 0.5788429632689648, 0.5779190994838436, 0.5785195500614586, 0.5805744388868123, 0.5839552526177542, 0.5884946558044039, 0.594003854206189, 0.6002847896702568, 0.6071368367019616, 0.6143594915615525, 0.621753374325048, 0.6291217350453421, 0.6362738943434846, 0.6430310733870644, 0.6492342198741279, 0.654752897369732, 0.6594940961990972, 0.6634098598751463, 0.6665027822242487, 0.6688286208785288, 0.6704954493733352, 0.6716589446905419, 0.6725136299104837, 0.6732802218448299, 0.674189703239865, 0.6754653182897637, 0.6773042663626618, 0.6798612609003448, 0.68323613746764, 0.6874672268493267, 0.6925313048148433, 0.6983498087453822, 0.7047999842322565, 0.7117289657434475 ], [ 0.6697203258835268, 0.662204959396249, 0.6549185643461632, 0.6477734219321484, 0.6406512413295866, 0.6334225347584759, 0.6259712950278663, 0.6182216479087079, 0.6101623890317394, 0.6018651261684216, 0.5934921499886884, 0.5852911836884682, 0.5775759029839931, 0.5706936152204346, 0.5649844956199928, 0.5607395410517335, 0.5581657138878383, 0.5573655386124559, 0.5583345941727742, 0.5609752337749224, 0.5651206041816961, 0.5705613240398235, 0.5770683177969881, 0.58440826719247, 0.5923514133464288, 0.600673824081355, 0.6091572366144089, 0.6175893271553973, 0.6257662316029984, 0.63349789881663, 0.6406158213021144, 0.6469820612662461, 0.6524982749724894, 0.6571135139943538, 0.6608297950667074, 0.6637046630552568, 0.6658501726371843, 0.6674278972765074, 0.6686397961183714, 0.6697150979642212, 0.6708938353753924, 0.6724082540618177, 0.6744639182504689, 0.6772227428844529, 0.68079020699747, 0.6852085215855495, 0.6904565886555447, 0.6964564243137518, 0.7030846539863483, 0.710187008420556 ], [ 0.6590566912790887, 0.6508837277280044, 0.6429712859849136, 0.635217020552339, 0.6274807719779407, 0.6196069135416322, 0.6114534214453519, 0.6029238070821523, 0.5939971000130578, 0.5847507683940039, 0.5753717860066524, 0.5661520390694789, 0.5574661047098287, 0.549732362316222, 0.5433623261606808, 0.5387071304984591, 0.5360125006336024, 0.5353924528478519, 0.5368268892564926, 0.5401809897597185, 0.5452381498855768, 0.5517358292561397, 0.559395463653286, 0.5679418890406472, 0.5771122325100875, 0.5866573133655613, 0.5963397368065768, 0.6059323754935907, 0.6152195370617013, 0.624001533459602, 0.6321021079001156, 0.6393774533049218, 0.6457253425822505, 0.6510930183530681, 0.6554827650673827, 0.6589543686212822, 0.6616238981957149, 0.6636584381986617, 0.6652666192598593, 0.6666851215813282, 0.6681617966324621, 0.6699366500822771, 0.6722225342298489, 0.6751878184917166, 0.6789433337858268, 0.6835353978388599, 0.6889457720824059, 0.6950982109593838, 0.7018701764509923, 0.7091075985862385 ], [ 0.6479347845196173, 0.6390637800282549, 0.6304893786560499, 0.6220931531421949, 0.6137100858310832, 0.6051541319469943, 0.5962522354823928, 0.5868823573781188, 0.5770099233060406, 0.5667166727236712, 0.5562160841210033, 0.5458503728263613, 0.5360658303427658, 0.5273665478997587, 0.5202515924647978, 0.5151465906061096, 0.5123449256768798, 0.5119732003919856, 0.5139888826227044, 0.5182075513850509, 0.5243480929509954, 0.5320808572840494, 0.5410666869832229, 0.5509810687368544, 0.5615239000396762, 0.5724193122175661, 0.5834111887075103, 0.5942591370310325, 0.6047377631147263, 0.6146400888003672, 0.6237844351076284, 0.6320232746972907, 0.639252357142211, 0.6454186042041309, 0.6505256215789502, 0.6546360127650059, 0.6578699433608991, 0.6603996097492812, 0.6624394865974983, 0.6642325456968051, 0.6660331048771758, 0.6680875589217093, 0.670614849333148, 0.6737889514746181, 0.6777256855284423, 0.6824756665472671, 0.6880242464912796, 0.694298103078021, 0.7011770346756314, 0.7085088241266362 ], [ 0.6364157920629013, 0.6268079606245355, 0.6175376660033524, 0.60846902940074, 0.5994090523657031, 0.5901365913607807, 0.5804418564167906, 0.570171374596729, 0.5592720035886866, 0.5478270422466306, 0.5360775052286513, 0.5244221244860785, 0.5133910648904493, 0.5035917075532637, 0.49563107873587503, 0.4900279905202022, 0.4871353128773126, 0.48709366122546016, 0.4898289156740644, 0.4950904934993101, 0.5025136080362881, 0.5116840420121551, 0.5221888364523918, 0.5336458470466645, 0.5457138049952808, 0.5580894443091213, 0.5704993030314598, 0.5826922644871565, 0.5944362905939365, 0.6055202700530778, 0.6157601006832162, 0.6250072171299782, 0.6331576088018425, 0.6401596514279818, 0.6460195121548395, 0.6508032925832418, 0.6546353747272121, 0.6576926557778523, 0.6601945783068431, 0.6623891727106184, 0.6645357834104764, 0.6668857312920573, 0.6696627588972611, 0.6730455188839355, 0.6771543915033689, 0.6820444288000341, 0.6877052688416844, 0.6940676752391456, 0.7010152700557666, 0.7083993360101175 ], [ 0.6245814737505613, 0.614201052279581, 0.604204155413985, 0.5944362489285666, 0.5846731941330866, 0.5746537512731446, 0.5641250446628732, 0.5528952754162809, 0.5408864308543908, 0.5281791378875677, 0.5150416395591813, 0.5019348475818566, 0.48948606335309525, 0.47842688455233867, 0.4694980991748344, 0.4633363893810475, 0.4603701828654974, 0.4607560801549448, 0.4643758240363691, 0.470890352673322, 0.47982619814122734, 0.49066284421150835, 0.5028981459791584, 0.5160836400537275, 0.5298336647350689, 0.5438180767042714, 0.5577487941130247, 0.5713677736646808, 0.5844404674481287, 0.5967556633729582, 0.6081305182773119, 0.6184186225274975, 0.6275188325790468, 0.6353829948603199, 0.6420212229185005, 0.6475038680924103, 0.6519596674497479, 0.6555697918304428, 0.6585577390201716, 0.6611753179794215, 0.6636854085687443, 0.6663427418134349, 0.6693745187890315, 0.6729630838075427, 0.6772328869140204, 0.6822434910703414, 0.6879894465074363, 0.6944066943182956, 0.7013840981491365, 0.7087780230179885 ], [ 0.6125367512099515, 0.60135274474565, 0.590603336853921, 0.5801143952445263, 0.5696275803587648, 0.55883638853305, 0.5474379669494346, 0.5351942954051476, 0.5219946627876865, 0.5079108107325286, 0.4932358111346006, 0.4784970065687407, 0.4644325908224361, 0.4519229119935088, 0.4418752363084327, 0.43507719647610055, 0.43205512884566755, 0.43298449310341625, 0.43768539257013783, 0.4456997854224014, 0.45641271961742197, 0.4691705798437646, 0.4833647054521775, 0.4984719748184624, 0.5140606487652849, 0.5297761239758088, 0.5453202126380543, 0.5604332372558711, 0.5748834441924878, 0.5884644301544963, 0.6009989268837655, 0.6123463120696119, 0.6224112205450131, 0.6311511531429839, 0.6385816366366517, 0.6447780483372887, 0.6498736097091078, 0.6540533133408972, 0.6575437723413039, 0.6605992716734344, 0.6634847189496679, 0.6664567249662886, 0.6697445870965584, 0.6735333219569611, 0.6779509043480031, 0.6830614031203737, 0.6888648055139335, 0.6953032047638709, 0.702272000674819, 0.7096341030712212 ], [ 0.6004119105658231, 0.588400272258453, 0.5768792041276777, 0.5656544011947772, 0.5544305416235606, 0.5428507452842999, 0.5305549673501555, 0.5172501861528891, 0.5027835307419913, 0.48720917571436545, 0.470839558716488, 0.454269931910999, 0.43836239082508005, 0.4241740172219472, 0.4128200010409226, 0.4052839245215488, 0.40222191195090246, 0.40383265946013214, 0.4098496768352739, 0.4196535643537335, 0.43244469345217734, 0.4474038597001681, 0.4637974416248641, 0.4810210158231322, 0.49859783064600993, 0.5161539557264504, 0.5333878361322744, 0.5500451059189018, 0.56590326903529, 0.5807664196768924, 0.5944676809186422, 0.6068761495951752, 0.6179053085645527, 0.627520557873454, 0.6357443037192503, 0.6426576919544632, 0.6483985138371902, 0.6531550943452996, 0.6571562013122773, 0.6606572924129791, 0.663923810634447, 0.6672127372419523, 0.670754116006021, 0.6747346048298547, 0.679285110515848, 0.6844741135986032, 0.6903074353235006, 0.6967341393611184, 0.703657286048448, 0.7109476240188392 ], [ 0.5883640654421434, 0.575510341503506, 0.5632076020456203, 0.5512412745353671, 0.5392767799638579, 0.526902124720154, 0.5136928918818541, 0.49929168742774815, 0.4834924475470088, 0.4663202175716144, 0.448097128523888, 0.42948309595126755, 0.4114741362942264, 0.39533440692336785, 0.3824391011406182, 0.37402981808226055, 0.3709391828377028, 0.3733960531758117, 0.3810108010031267, 0.3929427239003331, 0.40815064503830706, 0.4256116129648969, 0.44444940283160217, 0.46397552075253573, 0.4836736136685681, 0.5031591425087051, 0.5221364632791077, 0.5403651020484844, 0.5576392625465162, 0.5737797681200483, 0.5886352148397805, 0.6020884424841055, 0.6140648383484018, 0.6245398740852718, 0.6335442030239716, 0.641165382466276, 0.6475457766169, 0.6528765011742323, 0.657387501599684, 0.661334122759826, 0.6649808934299521, 0.6685837077632462, 0.6723720462712139, 0.6765331852799615, 0.6812003309264257, 0.6864461859918731, 0.6922826555011091, 0.6986664054506331, 0.7055090742251025, 0.7126903359611315 ], [ 0.5765774247330766, 0.5628798444341104, 0.5497973521315723, 0.5370955993658905, 0.5243992522640015, 0.5112372683622558, 0.49711424895545075, 0.4815990107796514, 0.4644200553101037, 0.44555870562136635, 0.42533176348794793, 0.4044532776596905, 0.3840564960007132, 0.36564239005984667, 0.3509101774410841, 0.34144598573200385, 0.3383293389755192, 0.341830597499835, 0.35138180562171284, 0.3658346667025638, 0.3838322113412097, 0.4041055728919863, 0.4256227987966206, 0.44761561414739426, 0.4695396526471475, 0.49101275471556505, 0.5117570007185711, 0.5315557022978824, 0.5502277667613621, 0.5676171181728576, 0.5835928277562777, 0.5980553185804589, 0.6109447158339872, 0.6222485098822884, 0.6320067645504789, 0.6403139239031228, 0.6473168081281987, 0.6532087151687979, 0.6582197775656075, 0.6626039749127558, 0.6666235374713917, 0.6705318913154446, 0.6745567071443761, 0.6788848820812695, 0.6836512576516036, 0.6889324730951083, 0.6947466090710128, 0.701058360635921, 0.7077886305595048, 0.7148268709248322 ], [ 0.5652618222224967, 0.5507347283035893, 0.5368894534300033, 0.523473039509688, 0.510068978973886, 0.49614457637834336, 0.48112814792589303, 0.46450612863712054, 0.44592896751085165, 0.4253170588578719, 0.40296078569338345, 0.37960764957989107, 0.3565191624708533, 0.33545588948284255, 0.31851594794340116, 0.3077508832629714, 0.30459618505828245, 0.3093829148108901, 0.3212786285257773, 0.3387015115076861, 0.359884375331289, 0.3832714191560364, 0.40767266725800444, 0.4322554328021356, 0.4564666764173473, 0.4799439472898596, 0.5024408123896944, 0.5237748217245813, 0.5437974507051971, 0.5623816607488467, 0.5794214792402222, 0.5948382440771663, 0.6085891972699036, 0.6206754108238688, 0.6311472142099813, 0.6401061830742492, 0.6477033236119872, 0.6541334292932528, 0.6596258190312906, 0.6644319003577492, 0.6688103035575488, 0.6730107012328885, 0.6772577884337108, 0.6817371249363615, 0.6865845019600223, 0.6918801171385487, 0.6976481591445687, 0.7038615668583873, 0.7104509514273007, 0.7173161468953879 ], [ 0.5546489259365589, 0.5393263166012597, 0.5247535345992265, 0.5106609064644574, 0.49659171855595446, 0.48195095719324743, 0.46608758402082856, 0.4483991248982474, 0.42844645714854307, 0.40607062827159396, 0.38150892569034645, 0.3555092811707363, 0.329433117721322, 0.305304726058656, 0.2856993450400505, 0.27330043323819625, 0.2700724584840585, 0.2764407517028997, 0.2911694612118541, 0.3120589172296917, 0.33681891432365635, 0.36357844165280434, 0.3910071860751893, 0.4182383298628729, 0.4447375593615226, 0.47018265112455504, 0.49437292928707427, 0.5171699290765638, 0.5384644417064641, 0.5581632567236754, 0.5761888177924259, 0.5924858577458586, 0.6070304308978582, 0.619838221857181, 0.630970282145762, 0.6405352826110124, 0.6486879688389875, 0.6556238589417059, 0.6615704522297207, 0.6667754337833904, 0.6714926284357197, 0.6759667789579082, 0.6804185323413042, 0.6850312039557918, 0.6899408376642882, 0.6952307281419866, 0.7009309520928397, 0.7070226996154404, 0.7134464934319452, 0.7201129034755928 ], [ 0.5449856034887485, 0.5289243999906483, 0.5136807198966894, 0.4989707979021679, 0.48430034136532923, 0.46901391686198546, 0.4523813464853839, 0.43370835605531893, 0.4124580307471101, 0.3883752458697301, 0.3616147178597459, 0.33288003092344953, 0.3035784600326279, 0.27596564328131123, 0.25315412600841486, 0.23867706972625358, 0.23530546568113822, 0.24361929203263363, 0.26174994566754883, 0.2866156357249935, 0.31528705795595174, 0.3455833854937154, 0.37608162616485613, 0.40592707341381656, 0.43463708691530833, 0.4619503827338544, 0.4877243902849951, 0.511871944170882, 0.5343276226748295, 0.5550349284540158, 0.573946668911934, 0.5910322862761905, 0.6062874627121687, 0.6197428762710917, 0.6314702919761898, 0.6415851259714614, 0.6502452289086549, 0.6576459897738747, 0.6640120844768331, 0.6695863912288392, 0.6746168294070448, 0.6793421533658396, 0.6839779915454269, 0.6887045682393376, 0.6936574826376564, 0.6989225949662367, 0.7045355121692036, 0.7104854901122907, 0.7167229382816919, 0.7231692759750842 ], [ 0.5365241330619659, 0.5198066239097323, 0.5039722642437026, 0.4887264843640546, 0.47354188154988464, 0.45770760209888584, 0.44041884588929114, 0.420891993713801, 0.3984901835998427, 0.3728512111207897, 0.34402109169499856, 0.31260911132749736, 0.27998934510468076, 0.24856102940827493, 0.2219722249925521, 0.20485340561096924, 0.20121784531825526, 0.21191007268024867, 0.23405140207795322, 0.26332670497304284, 0.2960912554035007, 0.32992120866465047, 0.36338216213402696, 0.395687613785845, 0.42643822025841266, 0.4554494952482907, 0.4826441849645885, 0.5079893708664143, 0.531464470914295, 0.5530500063046274, 0.5727291845951674, 0.5904960720249237, 0.6063657801557234, 0.6203836393087278, 0.632631621295087, 0.6432312143011816, 0.6523425552142202, 0.6601599763677897, 0.6669043389973337, 0.672812704890145, 0.678126099997567, 0.683076354358205, 0.6878732143328555, 0.6926930342300162, 0.6976702824515496, 0.702892799371775, 0.708401246810203, 0.7141925903977321, 0.7202268953878133, 0.7264363224458212 ], [ 0.5295093627841991, 0.5122441610549173, 0.49592381405458735, 0.48024675911737935, 0.46465882101754824, 0.4484021306896294, 0.4306068175985232, 0.4104091658850238, 0.3870790314624136, 0.36014731862924093, 0.3295379240729653, 0.29572588718558385, 0.2599659547820407, 0.22465812911925642, 0.19386306619215157, 0.1734911862795437, 0.16941176246776046, 0.18292574824999142, 0.20957127419941232, 0.24342437984412837, 0.28016669485542606, 0.31727311580353285, 0.3533961037974499, 0.38786587519662485, 0.4203853643416957, 0.4508516039553355, 0.4792514591006335, 0.5056031743772034, 0.529927798535549, 0.5522401687251958, 0.5725518003783212, 0.5908797910696565, 0.6072574216883142, 0.6217435975520884, 0.634429496969375, 0.6454416976183751, 0.6549416366357373, 0.663121604856208, 0.6701976830142886, 0.6764001901180674, 0.6819623869652315, 0.687108367964879, 0.6920412431688847, 0.696932791475909, 0.7019156869998737, 0.7070791289919572, 0.7124682651341909, 0.7180872718756018, 0.7239054613355709, 0.7298654320542178 ], [ 0.5241635302545137, 0.5064843905032196, 0.4898060074020964, 0.473823950270429, 0.45796529075080994, 0.44143686966877604, 0.42331846836028675, 0.4026829307613869, 0.37872401777301484, 0.3508812148563927, 0.3189653182697758, 0.2833083758316122, 0.2449932506612935, 0.2062768454827165, 0.1713804044297605, 0.14741323988271382, 0.14268309171719842, 0.15921814405311074, 0.19034670868918696, 0.2283669923985116, 0.26850549363854354, 0.3083036547619452, 0.3465677656893297, 0.3827588795620718, 0.41667612776757446, 0.44828634378647053, 0.47762876735551135, 0.5047628945738744, 0.5297436821884961, 0.5526145291667501, 0.5734110669015955, 0.5921703737138129, 0.6089416295204587, 0.6237955490022606, 0.6368310655638942, 0.648178590962995, 0.6579997391114868, 0.6664837394262824, 0.6738409663710128, 0.6802941605939481, 0.6860680644532989, 0.6913783495181705, 0.6964208447998094, 0.7013621260940467, 0.7063324432106258, 0.7114217157233155, 0.7166789401532331, 0.7221148923341234, 0.7277075765645473, 0.7334095607751308 ], [ 0.5206701664009585, 0.5027322134836967, 0.4858432430714003, 0.46970013417509865, 0.4537204797763332, 0.43709029070598215, 0.4188581748452971, 0.3980568348724448, 0.3738311105808061, 0.34556037907217274, 0.3129779794801629, 0.27631046842926865, 0.23649426620936886, 0.195606027748101, 0.15780138225543275, 0.13090676423690778, 0.12545490188869568, 0.1443335280620024, 0.17874606189147538, 0.2196197705336229, 0.26200467809523975, 0.3035682548875189, 0.34324473561265934, 0.3805840754041602, 0.41544406803403766, 0.44783190924840904, 0.47781715857269547, 0.5054843861349307, 0.5309107485731438, 0.5541598129115562, 0.5752853337216829, 0.5943400723371459, 0.6113859753560775, 0.6265032181198029, 0.6397966624848862, 0.6513990809054995, 0.6614710420236214, 0.670197684780746, 0.677782806751047, 0.6844408318157115, 0.6903873494005257, 0.6958290427098424, 0.7009539229538808, 0.7059228157109053, 0.7108629597875725, 0.7158643572266556, 0.720979173937684, 0.7262240923169885, 0.7315851419170583, 0.7370242592824064 ], [ 0.5191591263678738, 0.5011324697579564, 0.48419352006260574, 0.4680444226221557, 0.4521031855070488, 0.4355511045331629, 0.4174276185649122, 0.39675289105751127, 0.3726566256488861, 0.34450033574017136, 0.3119953157541803, 0.2753387011385505, 0.2354247057312545, 0.1942687818445313, 0.1559577719646651, 0.12836925287643508, 0.12250669587331962, 0.14166334140453182, 0.17670245507508725, 0.21824378879592055, 0.26126080073947794, 0.30341093481637643, 0.3436261787045361, 0.38145300965139406, 0.41674548822721785, 0.4495088301323154, 0.4798137225138068, 0.5077494022178359, 0.5334008336022877, 0.5568415524007524, 0.5781361799594036, 0.5973479641928436, 0.6145478521450741, 0.6298226992187654, 0.6432811950495482, 0.6550568492717859, 0.6653079091360241, 0.6742144122443059, 0.6819727781611548, 0.6887884775391231, 0.6948674297363221, 0.7004068817029593, 0.7055865950818768, 0.7105611801551676, 0.7154543297256272, 0.7203555075990136, 0.7253193512945472, 0.7303677054795633, 0.7354938787439296, 0.7406684760387575 ], [ 0.5196950553721119, 0.5017563228075942, 0.48493281107107483, 0.46893542840070396, 0.45319236213157316, 0.4368965519364393, 0.41910083976813206, 0.398841268920204, 0.3752672668769149, 0.34776629219132166, 0.3160857702370125, 0.280475304295562, 0.24190489246591176, 0.20248189639673675, 0.16629535717691363, 0.14065317523333537, 0.13491125269253382, 0.15199573229745797, 0.1846602312391211, 0.22447570369488978, 0.2663965973362439, 0.30788882922871824, 0.34772873626958334, 0.3853559616507572, 0.4205530538570549, 0.45327805920577396, 0.48357192461437415, 0.5115070231565327, 0.5371608868555239, 0.5606061328322225, 0.5819104240607234, 0.6011418385714039, 0.6183762037869883, 0.6337040229481513, 0.6472355552106692, 0.6591033483994065, 0.6694620446001605, 0.6784856140763958, 0.6863623793491694, 0.6932883261414329, 0.6994593008129327, 0.7050627783544776, 0.7102699398380067, 0.7152287972784686, 0.7200590207949884, 0.7248489466369649, 0.7296549894017974, 0.7345033876547169, 0.7393939343022786, 0.7443051344603185 ], [ 0.5222713007671491, 0.5045941504865122, 0.48804706237317097, 0.47235258377116524, 0.45695799306551776, 0.44108302354879875, 0.42381469047303993, 0.40423049716570614, 0.3815297293369268, 0.35516129460842244, 0.32495149745095403, 0.2912540127242394, 0.2551705679672903, 0.2189285155477781, 0.1865006387415655, 0.16413734531998794, 0.1588118826622754, 0.17278791305771576, 0.20128740792500174, 0.2376226902794302, 0.27702179880664557, 0.3167577589939594, 0.3553821434689793, 0.3921619185309321, 0.4267577210786087, 0.45904374510222035, 0.48900467105544615, 0.516676721228214, 0.5421158776445435, 0.5653834573698691, 0.5865425126743231, 0.6056603032963844, 0.622813361287815, 0.6380927443185058, 0.6516079862804612, 0.6634889743271853, 0.6738854991481198, 0.6829645669727133, 0.6909057765187616, 0.6978952023824467, 0.7041183244758421, 0.7097526156832331, 0.7149604409543598, 0.719882911892431, 0.7246352622723083, 0.729304154482944, 0.7339471073143661, 0.7385939847424197, 0.7432502483125544, 0.7479014957666199 ], [ 0.5268104004737869, 0.5095563580782329, 0.4934335197213409, 0.4781782684898599, 0.4632644698140434, 0.4479514042966284, 0.43137733234918924, 0.41268119706382356, 0.39113354483346713, 0.366265899549811, 0.3380013850639889, 0.3068047934217845, 0.2738856536952286, 0.24149228349888804, 0.21326211956948238, 0.1942265292602047, 0.1893504463246942, 0.20034229464681622, 0.22430911048912194, 0.2563661113599098, 0.292353149907545, 0.32952561329121355, 0.3662561470804421, 0.4016339477397189, 0.435178604947169, 0.46666023664922485, 0.49598967635991226, 0.523152690473658, 0.5481723932349866, 0.5710899801905734, 0.5919570880242717, 0.6108349540798701, 0.6277968664121069, 0.6429314649062092, 0.6563453427812495, 0.6681640992612101, 0.6785315064692125, 0.6876068004121868, 0.6955603290640362, 0.7025679339957264, 0.7088045386677033, 0.714437481726584, 0.7196201657014334, 0.7244865779217387, 0.7291471679242773, 0.7336864298093233, 0.7381623502346767, 0.7426076700589451, 0.7470327065004766, 0.7514293283964845 ], [ 0.5331710394321499, 0.5164819289846326, 0.5009110697406599, 0.4862102307328921, 0.4718856198067435, 0.4572457076106623, 0.4414923235012527, 0.4238389763600833, 0.403638940529651, 0.3805126773667706, 0.35447537883063324, 0.3260760423236466, 0.29656391286918304, 0.2680806520951152, 0.24378956451799072, 0.22762440044696378, 0.22314023945289194, 0.2316607043711486, 0.25149149600440585, 0.27920925595195056, 0.31141591374257643, 0.34554765168106316, 0.37990886352980546, 0.4134556976400324, 0.4455787012915547, 0.47594217656439225, 0.50437644099751, 0.5308089842744558, 0.5552226076286968, 0.5776318721532315, 0.5980715587035881, 0.6165924766249766, 0.6332611880384904, 0.6481612230743616, 0.6613942009128274, 0.6730799405628762, 0.683355143609308, 0.692370577619676, 0.7002869176878925, 0.7072695519191456, 0.713482753764443, 0.7190836853569499, 0.7242167228920658, 0.7290085801922972, 0.7335646413245219, 0.737966795686122, 0.7422729094427459, 0.7465178878161343, 0.7507161129693156, 0.7548649107773262 ], [ 0.541160166551958, 0.525152996392258, 0.5102373984690666, 0.49618152312576624, 0.4825278545820811, 0.4686403852775318, 0.45379193191999023, 0.43727705104151304, 0.4185344900666, 0.39726867888161943, 0.3735682576923067, 0.34802576893151776, 0.3218598387306266, 0.2970168071294758, 0.2761606870146665, 0.2623493647851674, 0.2581961042514104, 0.2647639144098694, 0.28108279100687095, 0.30479120695775375, 0.33322496893835296, 0.364125513388165, 0.39584133334249216, 0.42726249120876775, 0.4576834485514428, 0.48667618888825254, 0.5139940382575383, 0.5395049971031198, 0.5631483315109639, 0.5849081266773021, 0.6047985405294621, 0.6228565877244833, 0.639139266493045, 0.6537227102474515, 0.6667017963315718, 0.6781892586272663, 0.6883138210596335, 0.697217206078562, 0.7050501012661224, 0.7119673182128872, 0.7181224756788671, 0.7236625984011373, 0.7287230474228583, 0.7334231838943317, 0.7378631110802588, 0.74212173888814, 0.7462562806731322, 0.750303141660682, 0.754280015877821, 0.7581888971707024 ], [ 0.5505481812075882, 0.5353127708581439, 0.521129672286134, 0.5077839665876757, 0.49485663851098916, 0.4817704419080291, 0.46787221298783843, 0.452538563207986, 0.43529019684061293, 0.4159041574648782, 0.3945192937326958, 0.3717331767482281, 0.34868300301211, 0.3270814606172522, 0.30913613309270455, 0.29723978589722105, 0.29337286561142223, 0.2984156651277445, 0.3118350800970406, 0.33200882255879893, 0.3568951519169492, 0.3845830869676894, 0.41354535840209583, 0.44267088445576824, 0.4711991727192217, 0.4986326924344895, 0.5246589552974968, 0.5490908845272175, 0.5718249133858799, 0.5928134680081601, 0.6120480808769403, 0.6295497598809348, 0.6453638514437888, 0.6595572946673974, 0.6722167835718614, 0.6834468889767438, 0.6933676173909674, 0.7021112006895384, 0.709818132552403, 0.716632617514198, 0.7226976960711478, 0.7281503676127131, 0.7331170568375378, 0.7377097578914839, 0.7420231416410776, 0.7461328267300336, 0.7500949024985053, 0.7539466665383506, 0.7577084208374322, 0.7613860768268251 ], [ 0.5610849106804427, 0.5466840135208211, 0.533285389420584, 0.5206912493553312, 0.5085218226844681, 0.49625924978202374, 0.48332391326637386, 0.4691715450820941, 0.4533976158275553, 0.43583824065345406, 0.4166608668243753, 0.396439191344873, 0.3762011481070157, 0.35742353398617754, 0.3419246752263553, 0.3315986441062596, 0.32798894892942876, 0.33184120633796904, 0.34288908628834514, 0.3600191558027447, 0.38168498923004784, 0.40631144523131363, 0.43253808165580576, 0.45930272335133826, 0.4858292359906313, 0.5115766874042714, 0.5361823879996416, 0.5594126104017797, 0.5811248304028505, 0.6012409775081444, 0.6197296225055602, 0.636594707653666, 0.6518686250346373, 0.6656078537278416, 0.6778898257439282, 0.6888101237778408, 0.6984794795654165, 0.7070203260254699, 0.7145628638248116, 0.7212407470280505, 0.7271865877368472, 0.7325275367620822, 0.737381221470457, 0.7418523138307249, 0.7460299611727795, 0.7499862416251003, 0.7537757128931323, 0.7574360194071053, 0.7609894244127852, 0.7644450553592957 ], [ 0.5725144419746291, 0.558985773378117, 0.5464008111324509, 0.5345788147719872, 0.5231788026480702, 0.5117408945407244, 0.49975600975071943, 0.4867535827924857, 0.47239505576575147, 0.4565625922183122, 0.43943513207688306, 0.4215443923622533, 0.403799265218647, 0.3874578948195863, 0.37401732239606483, 0.36499581741944465, 0.3616248815572129, 0.36454591568638445, 0.37365725051905874, 0.38819645901470407, 0.40699904661904945, 0.4287879041114957, 0.4523826777602266, 0.4768022239080397, 0.5012867434939464, 0.5252768035542216, 0.5483765918533923, 0.5703164153233234, 0.5909208708846311, 0.6100843974209528, 0.6277536956287709, 0.6439156391097681, 0.6585891211669597, 0.6718194302349211, 0.6836740331533325, 0.6942389644043647, 0.7036153134561621, 0.7119155450335977, 0.7192595724441488, 0.7257706373102456, 0.7315711392729862, 0.7367786142699352, 0.7415020843573618, 0.7458389974182463, 0.7498729424550186, 0.7536722683503346, 0.7572896574441851, 0.7607626202655563, 0.7641147967785524, 0.7673578846660016 ], [ 0.5845875157177635, 0.5719469756481074, 0.560185497072279, 0.5491390730382075, 0.5385041392497196, 0.5278759314244469, 0.5168112411531259, 0.504906472852945, 0.4918800176899836, 0.4776489044810423, 0.46239149907592203, 0.4465884092139386, 0.43103131877384293, 0.4167848974040578, 0.40508455715293373, 0.39716171672647427, 0.394017518986847, 0.39620934370967836, 0.40373733628365965, 0.4160827996535672, 0.43237143743902756, 0.45157830558930667, 0.4726978351538147, 0.49484644479795864, 0.5173035668051096, 0.5395123210060799, 0.5610600880658229, 0.5816525959982107, 0.6010888613530012, 0.6192401022626636, 0.6360333479725516, 0.6514392912201726, 0.6654634634088988, 0.6781397363095115, 0.6895252750275168, 0.6996962696903287, 0.7087439899112834, 0.7167709004392732, 0.7238867336083726, 0.7302045321339443, 0.73583675817845, 0.7408916161770193, 0.7454697610562969, 0.7496615620307269, 0.7535450666520985, 0.7571847631862296, 0.7606311773327858, 0.7639212702150983, 0.7670795385180795, 0.7701196643689829 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "0_1", "0_2", "0_3", "0_4", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.8787215128540993, 0.6224002847447991, 0.06800075806677341, 0.2391850659623742, 0.6993239466100931, 0.3396183683908475, 0.3651902024269383, 0.4023340896504564, 0.3970546414551361, 0.461557071005642, 0.3306384873113657, 0.04066028007320713, 0.004748535907471133, 0.05130250077795612, 0.3299846449037961, 0.3826342101617093, 0.31194211610299283, 0.32751634774594246, 0.3378161075150564, 0.32254457578073753 ], "xaxis": "x", "y": [ 0.5375220915302634, 0.06691120099276304, 0.8427480636164546, 0.18448555283248425, 0.9126768168061972, 0.7881627188905751, 0.7842226775434626, 0.829580764626628, 0.8427796228186004, 0.749741166109909, 0.8336593887725209, 0.6222966405545832, 1.0, 0.8247139957317433, 0.7811521260209758, 0.7739187934730675, 0.7951150771352333, 0.8055023118444496, 0.8326333875419558, 0.7804698357144062 ], "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", "0_1", "0_2", "0_3", "0_4", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.8787215128540993, 0.6224002847447991, 0.06800075806677341, 0.2391850659623742, 0.6993239466100931, 0.3396183683908475, 0.3651902024269383, 0.4023340896504564, 0.3970546414551361, 0.461557071005642, 0.3306384873113657, 0.04066028007320713, 0.004748535907471133, 0.05130250077795612, 0.3299846449037961, 0.3826342101617093, 0.31194211610299283, 0.32751634774594246, 0.3378161075150564, 0.32254457578073753 ], "xaxis": "x2", "y": [ 0.5375220915302634, 0.06691120099276304, 0.8427480636164546, 0.18448555283248425, 0.9126768168061972, 0.7881627188905751, 0.7842226775434626, 0.829580764626628, 0.8427796228186004, 0.749741166109909, 0.8336593887725209, 0.6222966405545832, 1.0, 0.8247139957317433, 0.7811521260209758, 0.7739187934730675, 0.7951150771352333, 0.8055023118444496, 0.8326333875419558, 0.7804698357144062 ], "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": [ "