{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/models/torch/utils.py:274: UserWarning:\n", "\n", "This overload of nonzero is deprecated:\n", "\tnonzero()\n", "Consider using one of the following signatures instead:\n", "\tnonzero(*, bool as_tuple) (Triggered internally at /pytorch/torch/csrc/utils/python_arg_parser.cpp:766.)\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:33:52] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:33:57] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:01] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:05] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:09] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:13] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:17] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:21] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:25] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:29] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:33] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:38] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:41] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:44] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:45] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:49] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:50] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:51] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:55] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:59] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:35:03] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:35:06] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:35:10] ax.service.managed_loop: Running optimization trial 30...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.13885218555350543,\n", " 'x2': 0.1895580979279669,\n", " 'x3': 0.5334107177939718,\n", " 'x4': 6.101103775164642e-17,\n", " 'x5': 0.36076409245282803,\n", " 'x6': 0.6357817796984754}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.934937777293862, 'hartmann6': -1.8081028481672667}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n" ] }, { "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.837372719581054, -0.8525895554603647, -0.8657507577032888, -0.8765634752521939, -0.8847602914985112, -0.8901141728678374, -0.8924524930482001, -0.8916681079771308, -0.887725802501442, -0.8806633532089071, -0.8705875341077886, -0.8576661471954818, -0.8421174298672222, -0.824198129586261, -0.8041913372893961, -0.7823949328904812, -0.7591112527578572, -0.7346383567000259, -0.7092630644118825, -0.6832557596212802, -0.6568668315892566, -0.6303245403430231, -0.6038340508318389, -0.5775773745197832, -0.5517139749302196, -0.5263818264225143, -0.5016987546090395, -0.4777639261591854, -0.454659391425449, -0.43245161340990873, -0.41119294048879923, -0.390922998316166, -0.371669989189111, -0.3534518958164488, -0.3362775918393982, -0.3201478644684917, -0.3050563559532834, -0.29099043087027976, -0.2779319758403759, -0.26585813758446697, -0.2547420044081701, -0.244553235405357, -0.23525864095845073, -0.22682271752227567, -0.2192081392128401, -0.21237620837214644, -0.20628726702791744, -0.20090107099332932, -0.1961771282384679, -0.19207500309669712 ], [ -0.8473088588650041, -0.8632491293472297, -0.8771003234450433, -0.8885479553749617, -0.8973019068012644, -0.9031131790949588, -0.90579008769145, -0.9052114541930408, -0.9013345816611377, -0.8941968527365491, -0.8839112194180012, -0.8706569528383965, -0.8546674324154571, -0.8362166231532162, -0.8156055373419749, -0.7931496089498988, -0.7691675917615921, -0.7439723280361001, -0.7178635152951713, -0.6911224234001322, -0.6640083853589123, -0.6367568048264275, -0.6095783875267071, -0.5826593044444974, -0.5561620205951323, -0.5302265634750636, -0.5049720507849083, -0.480498341236368, -0.45688771135565487, -0.43420649343372597, -0.412506634852838, -0.3918271575099132, -0.37219550895374715, -0.3536288052794324, -0.3361349708603631, -0.31971378259525607, -0.3043578272863753, -0.29005338065637987, -0.27678121580841886, -0.26451734795638127, -0.2532337212094128, -0.24289884221311941, -0.2334783645951637, -0.22493562745921203, -0.2172321506174717, -0.21032808883285747, -0.2041826470357846, -0.19875445826557603, -0.19400192594225907, -0.18988353198381736 ], [ -0.8560059194936315, -0.872633277975652, -0.8871459106400545, -0.8992085428394933, -0.908508794056535, -0.9147756763614838, -0.9177979987097046, -0.9174398146335905, -0.9136501053090391, -0.9064650463942301, -0.8960030236509215, -0.8824540761488767, -0.8660660282434447, -0.847129351216541, -0.8259622580824659, -0.8028970233636815, -0.7782681301606574, -0.7524025561933503, -0.7256122833135548, -0.6981889368387973, -0.670400332087841, -0.6424886275865244, -0.6146697541669592, -0.5871337973414821, -0.5600460445309443, -0.5335484567320818, -0.5077613761086706, -0.48278533002415797, -0.45870283441331217, -0.4355801336253107, -0.41346883998340817, -0.3924074551666814, -0.3724227683661684, -0.35353113430750155, -0.33573963887133657, -0.3190471622118415, -0.3034453498014009, -0.2889195013526854, -0.27544938655042595, -0.2630099952850159, -0.25157222882356933, -0.24110353720119304, -0.23156850712404264, -0.2229294038638513, -0.21514666998402976, -0.20817938325020802, -0.2019856757183196, -0.19652311573679004, -0.19174905442370094, -0.1876209380670789 ], [ -0.8633494366981883, -0.8806144473717765, -0.8957470918011068, -0.9083927676788957, -0.918217978785898, -0.9249304430855829, -0.9282996303705756, -0.9281744800206211, -0.9244948873070695, -0.9172947670638305, -0.9066967104152387, -0.8929002109082085, -0.8761662104042324, -0.8568004024116102, -0.835137001817396, -0.8115240352125316, -0.7863107482449367, -0.7598374114732753, -0.732427570341136, -0.704382602242336, -0.6759783128670305, -0.6474632278830861, -0.6190582111137463, -0.5909570562642231, -0.5633277419301265, -0.5363140954826526, -0.510037669747835, -0.4845996901542161, -0.4600829755410695, -0.43655377190519207, -0.4140634653854809, -0.39265015992314983, -0.37234011777609793, -0.35314906889192377, -0.3350833993805943, -0.31814123107773723, -0.3023134043242164, -0.287584375262697, -0.2739330376377045, -0.2613334776008627, -0.249755668567757, -0.23916611185953585, -0.22952842774243765, -0.22080390056271704, -0.21295198095109547, -0.2059307475158697, -0.199697330029865, -0.1942082958171194, -0.1894200008372635, -0.18528890683000265 ], [ -0.8692393197680238, -0.8870797902454967, -0.9027782370138829, -0.915962792159492, -0.9262807171387455, -0.9334199103692638, -0.9371313743332004, -0.9372490648631031, -0.9337031601046959, -0.9265240303475635, -0.9158367371203306, -0.90184827090485, -0.8848307093112374, -0.8651031001230659, -0.8430139821183856, -0.8189256753039923, -0.793200949635714, -0.7661923380160127, -0.7382341090019555, -0.7096367228437499, -0.680683459150928, -0.6516288289747665, -0.6226983643407429, -0.5940894020512765, -0.565972529937551, -0.5384934275457691, -0.511774897952741, -0.48591894577278333, -0.46100880493300816, -0.4371108576016926, -0.4142764134885161, -0.3925433380937172, -0.37193753109315236, -0.35247426356020284, -0.3341593865776518, -0.31699042515213305, -0.3009575711168049, -0.28604458756602713, -0.2722296357839662, -0.25948603392226555, -0.2477829550455486, -0.23708607070216947, -0.22735814493683837, -0.21855958264644382, -0.21064893537470208, -0.20358336701823587, -0.1973190814470347, -0.19181171369848027, -0.18701668616245137, -0.18288953101564576 ], [ -0.8735943119065444, -0.891936438010287, -0.9081346438033222, -0.9218023936484004, -0.9325702531154757, -0.9401085249677242, -0.9441513229724596, -0.9445182593785199, -0.9411293492319861, -0.934009965638793, -0.9232854616976011, -0.9091677831182168, -0.8919375595929684, -0.8719247823466899, -0.8494901853304857, -0.8250085704036426, -0.7988547311071607, -0.7713922479566911, -0.742965152925399, -0.7138922528678948, -0.6844637581784898, -0.6549397866790323, -0.6255502977860102, -0.5964960437388042, -0.5679501847816624, -0.5400602869239473, -0.5129504918930945, -0.4867237117257269, -0.4614637518149253, -0.43723730565603247, -0.41409579311779676, -0.3920770336224154, -0.3712067581072307, -0.3514999708736268, -0.33296217593947297, -0.3155904835270239, -0.29937461177479485, -0.2842977973442087, -0.27033762677597306, -0.2574667985497676, -0.2456538240028192, -0.23486367366729333, -0.22505837423266795, -0.21619756022831016, -0.20823898363413618, -0.20113898393494112, -0.19485292060635384, -0.1893355696297836, -0.18454148535603665, -0.18042532885282625 ], [ -0.8763558080787384, -0.8951160954278233, -0.9117379724751964, -0.9258232592899927, -0.9369889185091839, -0.944890504258431, -0.9492474294035376, -0.9498660749133352, -0.9466560744688521, -0.9396362971592861, -0.9289299204385393, -0.9147508765637485, -0.8973852918564171, -0.8771712389290505, -0.8544791229359705, -0.8296940910443491, -0.8032012069245221, -0.7753736987997799, -0.7465642765590399, -0.7170992811487371, -0.6872752736653379, -0.6573575927204958, -0.627580397896206, -0.5981477565586154, -0.5692353999957228, -0.5409928543042652, -0.5135457285081224, -0.4869980094951261, -0.46143426744945953, -0.43692171641848837, -0.4135121039630433, -0.39124342361255615, -0.37014145626063655, -0.3502211536488585, -0.3314878803219998, -0.3139385311735132, -0.2975625408988398, -0.28234280002962486, -0.2682564902123288, -0.25527584932929015, -0.24336887512238992, -0.2324999742638475, -0.22263056236003542, -0.21371961917080828, -0.20572420235808853, -0.19859992231350565, -0.19230138002649755, -0.1867825695135008, -0.1819972460125856, -0.1778992609367338 ], [ -0.8774906024866301, -0.8965784054987757, -0.913540286368626, -0.9279697257513632, -0.9394735406941536, -0.9476958049901519, -0.9523438489151648, -0.953212310051843, -0.9502004795497119, -0.9433193140000118, -0.9326872843157326, -0.918517144545612, -0.9010971807006766, -0.8807703662467082, -0.857913937941705, -0.832920966495955, -0.8061847930819845, -0.7780867065383084, -0.748986872903385, -0.7192182638616138, -0.6890831579445792, -0.6588517046533199, -0.628762033948119, -0.5990214400121471, -0.5698082449305952, -0.5412740346592181, -0.5135460424207083, -0.48672952579335976, -0.4609100404197222, -0.43615555570654946, -0.41251838793549045, -0.39003694624783825, -0.3687372993852667, -0.34863457794920294, -0.329734229988793, -0.31203314826409745, -0.2955206865411816, -0.28017958046231717, -0.2659867863764256, -0.25291424931887085, -0.24092960927575036, -0.22999685304701056, -0.2200769174671342, -0.21112824844948486, -0.20310731926897485, -0.19596911065982492, -0.18966755465173535, -0.18415594357330844, -0.17938730529363167, -0.17531474553301518 ], [ -0.8769922418898003, -0.8963126630038978, -0.9135261574110306, -0.9282212900781243, -0.9399983456592708, -0.948493372332609, -0.9534044528679786, -0.9545162194937075, -0.9517179321677314, -0.9450114814213406, -0.934508280443155, -0.9204168018541508, -0.9030240916784776, -0.8826746837967393, -0.8597495918608282, -0.8346471581208206, -0.8077667928625768, -0.7794960745703126, -0.750201258768529, -0.7202209384583659, -0.6898624046802161, -0.6594001643292583, -0.6290760657661774, -0.5991005348538708, -0.5696545077692177, -0.540891740153089, -0.5129412600845458, -0.48590980717881227, -0.45988415918152564, -0.43493329132018166, -0.41111034450287054, -0.38845439885983934, -0.366992061656403, -0.34673888546848536, -0.3277006354786977, -0.309874425182759, -0.2932497386976245, -0.27780935594459144, -0.26353019472392436, -0.25038408140764157, -0.23833845983211677, -0.22735704606154916, -0.21740043504925555, -0.2084266638437361, -0.20039173485154116, -0.19325010175305357, -0.186955119944766, -0.18145946282891112, -0.17671550486845922, -0.17267567205477374 ], [ -0.8748808332179092, -0.8943376827764755, -0.91171259540072, -0.9265925991499504, -0.9385750134731257, -0.9472912830430654, -0.9524331001340973, -0.953776962638129, -0.9512026846508747, -0.9447023145809155, -0.9343782414510663, -0.9204318460056646, -0.9031456827978624, -0.8828625119567842, -0.8599639706321554, -0.8348508631633068, -0.8079262839709437, -0.7795821616801561, -0.7501893292104203, -0.7200908748905965, -0.6895983093785611, -0.6589899806205437, -0.6285111609290931, -0.5983752858321064, -0.5687659134022292, -0.5398390712881413, -0.5117257509763088, -0.4845343868686814, -0.45835321904670134, -0.4332524838900298, -0.40928640839318514, -0.3864950049046319, -0.36490567579415234, -0.34453464453282595, -0.3253882326780582, -0.30746400268981566, -0.2907517853851862, -0.27523460888636575, -0.26088954361540306, -0.24768847554449136, -0.2355988177009486, -0.2245841679422429, -0.2146049192914481, -0.20561882765877837, -0.19758154055424282, -0.19044708939871413, -0.18416834724388287, -0.17869745309619112, -0.1739862035883898, -0.16998641243892754 ], [ -0.8712013548112418, -0.8906998944035199, -0.9081469071001643, -0.9231310705103117, -0.9352500928036591, -0.9441340380789616, -0.9494709482883704, -0.9510311065072714, -0.9486857279610215, -0.9424166841415084, -0.9323158857744253, -0.9185752694873925, -0.9014699677913653, -0.8813377943373615, -0.8585578815455461, -0.8335306180092079, -0.8066602780515724, -0.7783410639625081, -0.7489467407844519, -0.7188236483221091, -0.6882866258474702, -0.657617267750221, -0.6270639152993075, -0.5968428458766768, -0.5671402132022388, -0.5381143942834371, -0.5098984944866337, -0.48260284284958815, -0.45631737299254815, -0.4311138316415507, -0.4070477893655419, -0.3841604496130256, -0.3624802653114219, -0.3420243795325423, -0.3227999099104295, -0.3048050970474857, -0.2880303360999762, -0.2724591088224775, -0.2580688310614533, -0.2448316283298444, -0.23271504984856872, -0.22168272940029654, -0.21169499954375315, -0.20270946418918523, -0.19468153322720239, -0.18756492181915274, -0.18131211608083853, -0.17587480620839324, -0.1712042875916907, -0.16725183012255784 ], [ -0.8660207036635581, -0.8854699685372913, -0.9029028842877158, -0.917912656431827, -0.9301004060384838, -0.9390977396895342, -0.9445915976236345, -0.9463479672274748, -0.9442305474050514, -0.9382111411409907, -0.9283702806344362, -0.9148886495326146, -0.8980314658728432, -0.8781287138790168, -0.8555540378445602, -0.8307045628978872, -0.8039831924624256, -0.7757842368006347, -0.7464826412661301, -0.7164266457586265, -0.6859334277415079, -0.6552871462129235, -0.6247387823703083, -0.5945072261401942, -0.5647811502661901, -0.535721317585395, -0.507463064859051, -0.4801187891772315, -0.4537803278053799, -0.42852117026152203, -0.4043984749648113, -0.3814548850057741, -0.35972015131139123, -0.3392125791304884, -0.3199403172595805, -0.3019025102135946, -0.2850903326729216, -0.2694879237451323, -0.2550732363617261, -0.24181881480146927, -0.22969251107814337, -0.2186581488512248, -0.2086761416572429, -0.19970407063101425, -0.19169722548764045, -0.1846091113607936, -0.17839192313161556, -0.17299698812714492, -0.16837517750806097, -0.1644772862914612 ], [ -0.8594238396537346, -0.8787384304317557, -0.8960758885691111, -0.9110364429906426, -0.9232272588378266, -0.9322840654523885, -0.9378950318588902, -0.9398237421286771, -0.9379276575282864, -0.9321690182859196, -0.9226166041591337, -0.9094385938855634, -0.8928882960349485, -0.8732853639245497, -0.8509952187322946, -0.8264090021641198, -0.7999257301847162, -0.7719376259340743, -0.7428189960633258, -0.7129185435761551, -0.6825547027537737, -0.6520134270531818, -0.6215478272261131, -0.5913791039941794, -0.5616983094474717, -0.5326685747162663, -0.5044275397573466, -0.47708980478648727, -0.4507492888976233, -0.425481430436269, -0.40134519822267883, -0.37838490575577743, -0.3566318349345363, -0.33610568404180335, -0.31681585867668477, -0.29876262545825516, -0.28193814772035874, -0.26632742082122807, -0.25190912260530096, -0.23865639229909852, -0.22653754889173028, -0.21551675795040126, -0.20555465390591754, -0.19660892313590184, -0.1886348516827172, -0.1815858401716417, -0.17541388744330977, -0.170070043581664, -0.16550483240085656, -0.16166864304322248 ], [ -0.8515094457231341, -0.8706107681406702, -0.887777434321216, -0.902618777022598, -0.9147502253006641, -0.9238138643811925, -0.9295012019494024, -0.9315752639186231, -0.9298886975927223, -0.9243950096304063, -0.9151513098931656, -0.9023125403055994, -0.8861186126782927, -0.866876782202064, -0.844941839243077, -0.8206964363892517, -0.7945332997245234, -0.766840406000733, -0.7379895848143851, -0.7083285110129194, -0.67817572087378, -0.6478181107887713, -0.6175103288441073, -0.5874755070470916, -0.5579068659766144, -0.5289698240256553, -0.5008043405637738, -0.47352730602918075, -0.44723485856528344, -0.42200455670686476, -0.3978973730783549, -0.3749594979893211, -0.353223957012427, -0.33271205552068145, -0.31343466767321404, -0.29539338893945755, -0.27858157101367564, -0.2629852566499238, -0.24858403005272323, -0.23535179632077807, -0.22325750126214083, -0.21226580079699664, -0.20233768720330592, -0.1934310776767344, -0.18550136909078363, -0.1785019614706893, -0.17238475154713273, -0.16710059684129164, -0.16259975005323646, -0.15883226307685494 ], [ -0.8423855137549938, -0.8612025107193532, -0.8781298039510859, -0.8927874999252996, -0.9048011132931779, -0.9138209859568149, -0.9195438559031646, -0.9217339635079596, -0.9202406510862826, -0.9150097591247789, -0.9060871784017168, -0.8936143370406502, -0.8778167457729924, -0.8589876467376364, -0.8374691698272553, -0.8136332550837068, -0.7878641212682183, -0.7605434389041319, -0.7320387539727942, -0.7026952049430712, -0.672830226373814, -0.6427307387388534, -0.6126522594760193, -0.5828193950803513, -0.5534272493809389, -0.5246433781162383, -0.49661001417905354, -0.46944637041762427, -0.443250893404794, -0.4181033920046247, -0.39406700083263185, -0.371189963523322, -0.3495072367864502, -0.3290419259100677, -0.30980656755901825, -0.2918042778830766, -0.27502978416420387, -0.2594703572580628, -0.24510666043967888, -0.23191352828590917, -0.2198606871310569, -0.20891342654609268, -0.1990332292948298, -0.1901783653622553, -0.18230445396740746, -0.1753649959951452, -0.16931187803226322, -0.1640958481926097, -0.15966696317262408, -0.15597500549228127 ], [ -0.8321652049316153, -0.85063466380981, -0.8672611084257152, -0.881676709302541, -0.8935185215331996, -0.9024467330357726, -0.9081649838310397, -0.9104403963271925, -0.9091205385604145, -0.9041448049004297, -0.8955485952329848, -0.8834599253301845, -0.8680893374210626, -0.8497148887907126, -0.828664421059858, -0.8052972667620157, -0.7799871611550911, -0.7531075642545141, -0.7250200130163136, -0.6960656237870434, -0.666559505771715, -0.6367876368519461, -0.607005671820373, -0.5774391634131091, -0.5482847407006513, -0.5197118767252334, -0.4918649668801057, -0.4648655196574726, -0.43881432707207624, -0.4137935325830682, -0.38986855121476577, -0.3670898222326354, -0.34549439169262797, -0.32510733271073816, -0.3059430172519121, -0.2880062560526043, -0.27129332403769335, -0.25579288803268596, -0.24148685223066702, -0.2283511350983649, -0.2163563894210898, -0.20546867513489953, -0.19565009257007404, -0.18685938179962003, -0.1790524920039862, -0.17218312317412932, -0.16620324111997353, -0.1610635656600058, -0.15671403105895676, -0.15310421725763135 ], [ -0.8209632400474904, -0.8390297734999876, -0.8553010668839526, -0.869422311567136, -0.8810432302753386, -0.8898351557019432, -0.895510075513391, -0.8978395207171461, -0.896670775636237, -0.8919380818423777, -0.8836672685488183, -0.8719733414047088, -0.8570516865671979, -0.839164419401468, -0.8186238682725365, -0.7957752162647072, -0.770980019402117, -0.7446018233394566, -0.7169945553619204, -0.6884938845175772, -0.6594113817521686, -0.6300310908410556, -0.6006080239896403, -0.5713680908316374, -0.5425090208149059, -0.5142019167652534, -0.4865931607696716, -0.4598064700589263, -0.4339449645829069, -0.4090931580802406, -0.38531882165549897, -0.362674695249184, -0.34120004021391126, -0.32092203761838894, -0.3018570436694321, -0.2840117171713489, -0.2673840352843293, -0.2519642137562199, -0.23773554681355435, -0.22467518036282852, -0.2127548303075093, -0.2019414557865049, -0.19219789509692542, -0.18348347006308485, -0.1757545627283339, -0.16896516654187976, -0.16306741274557546, -0.15801207148063012, -0.15374902625860154, -0.15022771988342798 ], [ -0.8088929689377357, -0.8265087661590446, -0.8423776438162803, -0.8561584884895168, -0.8675145305002021, -0.8761292751628239, -0.8817242703483904, -0.8840768079220879, -0.8830352841504321, -0.8785300850920797, -0.8705785055335312, -0.8592831704400693, -0.8448244409302269, -0.827448107246832, -0.8074501453770195, -0.7851604053026301, -0.7609268705328419, -0.7351017007525311, -0.7080297729728415, -0.6800399783434339, -0.6514391772456525, -0.6225084874407589, -0.593501469511633, -0.5646437532978497, -0.5361336863482761, -0.5081436522829683, -0.4808217826819672, -0.45429385793573784, -0.42866525400658495, -0.4040228411901298, -0.38043677816855564, -0.3579621715479297, -0.33664058968517707, -0.316501431882408, -0.2975631616330848, -0.2798344168894398, -0.2633150123065089, -0.2479968488511891, -0.23386474557085402, -0.2208972070556413, -0.20906713844646974, -0.19834251790875856, -0.18868703443744284, -0.18006069678867287, -0.17242041734231295, -0.16572057287389952, -0.1599135426307673, -0.15495022282473803, -0.1507805157109363, -0.14735379083272948 ], [ -0.7960641662677226, -0.8131885992228458, -0.8286145644113042, -0.8420150846371801, -0.8530674886856875, -0.8614682308341841, -0.8669493954023338, -0.8692951878313496, -0.868356373706912, -0.8640607281287966, -0.8564180988289049, -0.8455195198379909, -0.8315307155474398, -0.8146810934925313, -0.7952497939502123, -0.773550497764931, -0.7499165314058766, -0.7246874478359219, -0.6981978188924155, -0.6707685498909874, -0.6427006860721324, -0.614271450981505, -0.5857321355570357, -0.5573074217338467, -0.5291957475201254, -0.5015703755659724, -0.4745808942955155, -0.4483549467868284, -0.4230000408042098, -0.398605340975586, -0.37524338090782616, -0.3529716602199763, -0.3318341107397266, -0.31186242918564044, -0.2930772820916022, -0.2754893937864553, -0.2591005309018004, -0.24390439786900897, -0.22988745770103003, -0.21702969139673622, -0.20530530780876433, -0.19468341396431532, -0.1851286537690059, -0.17660182088413434, -0.169060449466782, -0.1624593845101152, -0.15675133181536005, -0.1518873862443958, -0.14781753589203417, -0.14449113919898804 ], [ -0.7825815173650962, -0.7991806687172999, -0.8141296382476209, -0.8271158356333658, -0.8378310642834775, -0.845985272624754, -0.8513218246624078, -0.8536327786301081, -0.8527723589537921, -0.8486668788384253, -0.8413198245131791, -0.8308115302849132, -0.8172936706594054, -0.8009794867076941, -0.7821311164726688, -0.761045560250077, -0.7380407046768238, -0.7134425324667366, -0.6875742569117578, -0.6607477333850786, -0.6332571781295425, -0.6053749982490392, -0.5773494080028755, -0.5494034588143076, -0.5217351198283751, -0.4945180888111946, -0.46790307086524946, -0.4420193220646709, -0.416976309327547, -0.39286538330644083, -0.3697613970555161, -0.347724230421869, -0.32680019984869524, -0.30702334706186385, -0.2884166093277063, -0.27099287978882747, -0.254755969729367, -0.23970148618562725, -0.22581763860485315, -0.21308598762203557, -0.2014821477299078, -0.19097645385744144, -0.18153459981165887, -0.17311825432742933, -0.1656856582544427, -0.15919220432581316, -0.15359099911997365, -0.1488334053418625, -0.14486956147349794, -0.14164887520187708 ], [ -0.7685437009332197, -0.7845898611713709, -0.7990337644128466, -0.8115773029543508, -0.82192694669201, -0.8298064741199453, -0.8349710498831765, -0.837221308698971, -0.836415840066804, -0.8324805201621246, -0.8254135166623972, -0.8152854068546578, -0.8022345464565129, -0.7864584478179072, -0.7682023527696253, -0.7477463624575367, -0.725392425008061, -0.7014522423443049, -0.6762368239089893, -0.6500480687869652, -0.6231724590924002, -0.5958767285672897, -0.5684052374366363, -0.540978726346184, -0.513794118969412, -0.4870250739201933, -0.4608230346133243, -0.4353185783141776, -0.4106229152339713, -0.3868294313387333, -0.3640152032719448, -0.34224244067159926, -0.32155983116568043, -0.30200377768758724, -0.2835995276770641, -0.2663622002787194, -0.2502977216714556, -0.23540368080968122, -0.22167011861028674, -0.20908026332636975, -0.19761122376850293, -0.18723465037336573, -0.17791737206018177, -0.1696220145319698, -0.16230760334285643, -0.15593015282895883, -0.15044324003499354, -0.14579856117793266, -0.14194646704838842, -0.1388364730895152 ], [ -0.7540429469839951, -0.7695141110116698, -0.7834304669778951, -0.795508358876732, -0.8054689574698548, -0.8130500212792405, -0.8180188315695213, -0.820185116279294, -0.8194125502283006, -0.8156274575054567, -0.8088236585221119, -0.7990629270507836, -0.7864711269954054, -0.7712306507937062, -0.7535701762087952, -0.7337529420613773, -0.7120647179979331, -0.6888024547415693, -0.6642643189728182, -0.6387415118572716, -0.6125119976353582, -0.5858360607384898, -0.5589534761942598, -0.5320820118002655, -0.5054169661392184, -0.47913146630141756, -0.4533772875613539, -0.42828600252932164, -0.40397031187628624, -0.38052544843345076, -0.35803057955406925, -0.33655015887916395, -0.3161351986816885, -0.2968244487349394, -0.27864547818174645, -0.2616156640977786, -0.24574309511324666, -0.23102740118028986, -0.2174605217961264, -0.20502742504639138, -0.19370678897444205, -0.18347165522426767, -0.17429006284573267, -0.16612566778989524, -0.15893835115921706, -0.15268481690748503, -0.1473191775810715, -0.1427935249950797, -0.1390584815344128, -0.13606372709663372 ], [ -0.7391649439228144, -0.7540443239103288, -0.767415812154606, -0.779010068993978, -0.7885628667319667, -0.7958259320577458, -0.8005787959581101, -0.8026406060340109, -0.8018806641904899, -0.7982264827349624, -0.7916684159817461, -0.7822603669881072, -0.7701165891721328, -0.7554050883212043, -0.738338490440735, -0.7191634242170916, -0.698149469056585, -0.6755785748638128, -0.6517356245221624, -0.6269005449773015, -0.6013421275950839, -0.5753135241463696, -0.5490492532214958, -0.5227634800595353, -0.4966493089813294, -0.47087883715339524, -0.4456037475393232, -0.42095625679798765, -0.39705027315324326, -0.3739826554939699, -0.35183449604694494, -0.33067237428435864, -0.3105495495474502, -0.2915070748750872, -0.27357482554185053, -0.25677244362026974, -0.24111020515872073, -0.22658981984379734, -0.21320517470120992, -0.20094303379083134, -0.18978370521593957, -0.17970168531137554, -0.17066628781383741, -0.16264226337265675, -0.15559041216155112, -0.1494681898276392, -0.1442303047677006, -0.1398293029142451, -0.136216134950654, -0.1333407001956074 ], [ -0.7239889808855104, -0.738264542983503, -0.7510785778352127, -0.7621758400634772, -0.7713064917807597, -0.7782360783217513, -0.7827563554253311, -0.7846960483693562, -0.7839304641600445, -0.7803889028048618, -0.7740590341279416, -0.7649877796573773, -0.753278683787448, -0.7390861819627562, -0.7226074975081469, -0.7040730762566546, -0.683736490668607, -0.661864637257862, -0.638728858133583, -0.6145973902439874, -0.5897293282422209, -0.5643701080138934, -0.5387483909993782, -0.5130741545140256, -0.48753776199342924, -0.4623097876205352, -0.43754139030807737, -0.4133650627231681, -0.3898956148881882, -0.3672312844073283, -0.345454894152757, -0.3246350023472429, -0.3048270093477681, -0.2860742004916642, -0.2684087157318056, -0.2518524450982529, -0.23641785484791622, -0.22210875296196408, -0.20892100478117048, -0.19684321031039254, -0.18585735430702266, -0.17593943891173702, -0.16706010651012027, -0.15918525797697103, -0.15227666871326728, -0.14629260219939533, -0.1411884183929375, -0.13691717238156875, -0.13343019738134432, -0.13067766549331195 ], [ -0.7085882322464115, -0.7222522592978549, -0.7345005731698886, -0.7450917285535748, -0.7537899724369487, -0.7603744050170581, -0.7646488493467527, -0.766451622393835, -0.765664269621996, -0.7622183471811901, -0.756099520134822, -0.7473485587560124, -0.736059193039157, -0.7223731520497133, -0.7064730029512464, -0.6885735725571127, -0.6689127710031049, -0.6477425596575521, -0.6253206493516164, -0.6019033226189383, -0.5777395827959549, -0.5530666704011091, -0.5281068669135732, -0.5030654302200483, -0.47812946915155496, -0.45346755744168676, -0.42922990017824103, -0.40554888972096054, -0.3825399165425273, -0.36030232911074606, -0.3389204631925194, -0.31846468360399266, -0.2989924001240096, -0.28054903420915966, -0.2631689247197151, -0.24687616957394776, -0.2316854065495101, -0.21760254072516783, -0.20462542860569455, -0.19274453003819525, -0.18194353882180503, -0.17220000164740235, -0.16348593291755853, -0.15576843035899735, -0.14901029344410754, -0.14317064378109456, -0.13820554408277297, -0.13406861029479655, -0.13071161009069476, -0.1280850402731899 ], [ -0.6930301143319828, -0.706078794018028, -0.7177570333874042, -0.727836833221146, -0.7360961446323155, -0.7423272666302998, -0.7463458245751691, -0.7479996219758688, -0.7471765524726592, -0.7438107791923215, -0.73788654321144, -0.7294392259765893, -0.7185536106552554, -0.7053596024530902, -0.6900259220170339, -0.6727524421460038, -0.6537618839623044, -0.6332915356965982, -0.6115855329733358, -0.5888880784523307, -0.5654378132459505, -0.541463406859914, -0.5171803201460448, -0.4927886208580965, -0.46847169079005513, -0.44439565020133837, -0.4207093311629042, -0.39754464907812903, -0.37501724495132227, -0.35322729576070666, -0.3322604138894778, -0.31218857755977936, -0.2930710520346602, -0.274955275962411, -0.25787769887070444, -0.24186456481375296, -0.22693264387513978, -0.2130899179268928, -0.20033622997969835, -0.18866390782787024, -0.1780583726820496, -0.16849874229758655, -0.15995843599307025, -0.15240578620349354, -0.14580465815293064, -0.14011507619549668, -0.1352938526646722, -0.1312952129299515, -0.12807140893722002, -0.12557331285884332 ], [ -0.6773766657217621, -0.6898097026169667, -0.7009170391597461, -0.7104837193976605, -0.7183009577008019, -0.7241738237050142, -0.7279293956523997, -0.7294247630054184, -0.7285541747818083, -0.7252546494862412, -0.7195094924648223, -0.7113493870243832, -0.700850995786969, -0.6881332781816853, -0.6733519522092404, -0.6566926715031364, -0.6383635398432845, -0.6185875515546461, -0.5975954487697511, -0.5756193532109636, -0.552887388213992, -0.5296193775474765, -0.5060236042838442, -0.4822945405578519, -0.45861141630014657, -0.4351374769765693, -0.41201978051287247, -0.38938939556437413, -0.36736188175950923, -0.3460379535345465, -0.3255042500436798, -0.3058341528280959, -0.28708860971101446, -0.2693169375237402, -0.2525575878243036, -0.23683886894228146, -0.22217962469729302, -0.2085898751999019, -0.19607142842234138, -0.18461847287132027, -0.17421816186183603, -0.16485119877227328, -0.15649243050814865, -0.14911145352883648, -0.14267323355771433, -0.137138736873205, -0.1324655682062319, -0.1286086080165415, -0.12552064045350975, -0.12315296268172782 ], [ -0.6616849201160612, -0.6735051700923603, -0.6840439288477936, -0.6930988418621918, -0.7004738998628209, -0.7059864607837085, -0.7094746426806727, -0.7108045465844615, -0.7098767015374796, -0.7066311428854364, -0.7010506445016073, -0.693161810369954, -0.68303395834278, -0.670775958328775, -0.6565313802740493, -0.640472436500837, -0.6227932562502672, -0.6037030113822641, -0.5834193369919438, -0.562162381453265, -0.5401496997849842, -0.5175920908766793, -0.49469038524392994, -0.4716331212059922, -0.44859500389532775, -0.4257360199814197, -0.4032010763957038, -0.38112003839217334, -0.35960805630332515, -0.33876608771490335, -0.3186815399307621, -0.2994289749241005, -0.2810708345911742, -0.2636581576529621, -0.24723127090258756, -0.23182044673588909, -0.21744652614503635, -0.20412151171563298, -0.19184913874499665, -0.18062543448876378, -0.17043927586504992, -0.16127295487654203, -0.1531027588057704, -0.14589956923099412, -0.13962948049281443, -0.13425443482493382, -0.1297328683241462, -0.1260203595708298, -0.12307027120459135, -0.12083437416743248 ], [ -0.6460072540956192, -0.6572203798515037, -0.6671956858948249, -0.6757429472413959, -0.6826784105532376, -0.6878312013326637, -0.6910500188483617, -0.69220964656924, -0.6912167537167843, -0.6880144818477252, -0.6825854031097869, -0.6749525916284597, -0.6651787405862415, -0.6533634523045853, -0.6396389955426202, -0.6241649398833371, -0.607122130261075, -0.58870645691157, -0.5691228190326584, -0.5485795918031826, -0.5272838048035324, -0.505437141324115, -0.4832327837036116, -0.46085306552892613, -0.4384678484679392, -0.4162335176846001, -0.394292481443169, -0.3727730633571064, -0.3517896857859341, -0.33144325686488435, -0.3118216891590937, -0.29300049335636, -0.27504340478162537, -0.2580030133257726, -0.2419213784162294, -0.2268306198619474, -0.21275348279165862, -0.19970388049778476, -0.1876874228252755, -0.17670193984342586, -0.16673801099157337, -0.15777950885277237, -0.14980416443845868, -0.14278415771420017, -0.13668673348771765, -0.1314748391651076, -0.1271077776747822, -0.12354186638621101, -0.12073109130915771, -0.11862774530690257 ], [ -0.6303917015323564, -0.6410058484195983, -0.650425293184021, -0.6584714465580803, -0.6649722681624671, -0.6697681054342687, -0.672717750120968, -0.6737043005504617, -0.6726403775804697, -0.6694722598571816, -0.6641825826953389, -0.6567913747089222, -0.6473553667807237, -0.635965672864719, -0.6227440857555906, -0.60783833363988, -0.5914166947432627, -0.5736623677145394, -0.5547679530618111, -0.5349303297227921, -0.5143461259512665, -0.4932078987348444, -0.4717010609319825, -0.45000153598964265, -0.42827407837705206, -0.4066711727715527, -0.3853324138654312, -0.3643842680378715, -0.3439401247064141, -0.32410055606691396, -0.3049537169312405, -0.2865758299127612, -0.26903171428061623, -0.2523753288093872, -0.23665030957264133, -0.22189049270679972, -0.20812041962056893, -0.19535582788525563, -0.18360413506662354, -0.1728649250297889, -0.16313044680537903, -0.15438613508195642, -0.14661115903965982, -0.1397790029330518, -0.13385807802497074, -0.12881236165674403, -0.12460205586629836, -0.1211842553875625, -0.11851361329393884, -0.11654299204215424 ], [ -0.6148822326385601, -0.624907724268521, -0.6337810523173288, -0.6413347548363103, -0.647407948354157, -0.6518516430612753, -0.6545342171213102, -0.6553466912906493, -0.654207414265415, -0.6510657862236524, -0.6459047149715063, -0.6387416080666378, -0.6296278389738761, -0.6186467647122983, -0.6059104956585437, -0.5915557087188106, -0.5757388438468382, -0.5586310299010089, -0.5404130551652726, -0.5212706411544401, -0.5013902079096704, -0.4809552462986306, -0.46014334669395873, -0.4391238793181296, -0.4180562818310842, -0.39708888420767924, -0.3763581877861109, -0.3559885119602925, -0.3360919255908052, -0.31676838834574045, -0.298106037854178, -0.2801815702792836, -0.263060673679012, -0.24679848466890408, -0.23144004903342452, -0.21702077580211276, -0.20356688174211934, -0.19109582908085654, -0.17961676344445743, -0.16913096140168393, -0.1596322976359621, -0.15110774074007716, -0.14353788418731006, -0.1368975155654235, -0.13115622315377962, -0.12627903490699266, -0.12222708137002891, -0.1189582713707188, -0.11642796774063302, -0.11458964985958286 ], [ -0.5995189994396913, -0.6089680527323547, -0.6173068694365355, -0.6243785984906862, -0.6300329522685472, -0.6341310403577811, -0.6365503143717001, -0.6371893113101735, -0.6359718598337492, -0.6328504300703288, -0.6278083646645716, -0.6208608203562319, -0.6120543624347261, -0.6014652721424176, -0.5891967325093863, -0.5753751375149365, -0.5601458148640573, -0.5436684624908588, -0.5261125773706914, -0.5076531105138997, -0.48846652401717905, -0.46872736428825956, -0.44860540771970775, -0.4282633862898109, -0.40785526334256833, -0.38752500452018485, -0.367405774372956, -0.3476194836148403, -0.328276613123043, -0.3094762465048433, -0.2913062516060021, -0.2738435613424861, -0.2571545147097032, -0.24129522908131062, -0.2263119844948095, -0.2122416092139784, -0.19911186321151964, -0.1869418221177349, -0.17574226844831375, -0.1655160994222452, -0.1562587613623192, -0.1479587196198099, -0.14059797042423738, -0.13415259742791164, -0.1285933715106271, -0.12388638819661957, -0.1199937333389165, -0.11687416495231384, -0.11448379746213655, -0.11277677423396093 ], [ -0.5843385515194707, -0.5932250109219651, -0.6010425111627706, -0.6076442933435771, -0.6128901063470922, -0.6166505992139422, -0.6188117854459524, -0.6192793072130334, -0.6179822102979327, -0.6148759559763983, -0.6099444448262548, -0.6032009045323965, -0.5946875887161319, -0.584474333186261, -0.5726561060280085, -0.5593497572874979, -0.5446902157037534, -0.5288263921343068, -0.5119170348540648, -0.4941267470042242, -0.4756223290077567, -0.456569556622743, -0.43713045508535237, -0.4174610861681684, -0.39770983053176556, -0.37801612324449174, -0.35850958521587145, -0.3393094861518582, -0.3205244737683806, -0.30225250765967937, -0.2845809428767536, -0.26758671668769063, -0.2513366012242666, -0.2358874940832152, -0.221286727950327, -0.20757238857597426, -0.19477363764134725, -0.18291104293947824, -0.1719969226082957, -0.16203571270575212, -0.15302436811978892, -0.14495280571616354, -0.13780439597983885, -0.13155650561177168, -0.12618108914621762, -0.12164532325296806, -0.11791227354245692, -0.11494158083075978, -0.11269015219307355, -0.11111284178735148 ], [ -0.5693740267765773, -0.5777131173551796, -0.585023835064018, -0.5911689971021411, -0.59601783677908, -0.5994499920653866, -0.6013595346706719, -0.6016588029054803, -0.6002817891438301, -0.5971868471007696, -0.5923585259268735, -0.5858084030912406, -0.577574867851024, -0.5677218909772078, -0.5563368931842092, -0.5435278850478898, -0.5294200890923044, -0.51415226821347, -0.49787297552402093, -0.4807369137414982, -0.4629015536431653, -0.44452411733149094, -0.4257589887294435, -0.40675557503510257, -0.3876566113406946, -0.3685968772784412, -0.3497022792357193, -0.331089243457978, -0.31286436291518227, -0.29512424273937976, -0.27795549404304354, -0.26143483289769986, -0.2456292493153286, -0.2305962195605875, -0.21638394351517587, -0.20303159670080706, -0.19056959358317205, -0.1790198645932537, -0.16839615361421256, -0.15870434525185395, -0.14994283190473967, -0.14210292950731784, -0.13516934806255343, -0.12912071912945533, -0.1239301778530868, -0.11956599254993927, -0.11599223087834998, -0.11316944868494638, -0.11105538598009723, -0.10960565420249946 ], [ -0.5546553220729771, -0.5624634211077179, -0.5692829991920197, -0.574985940400822, -0.5794504220787354, -0.5825645346685924, -0.584229917204, -0.5843652024450129, -0.582909056844813, -0.579822613922666, -0.5750911354667447, -0.5687247898475656, -0.5607585038998673, -0.5512509156450416, -0.5402825205613461, -0.5279531564677193, -0.5143790062419862, -0.4996893115902794, -0.48402298603512384, -0.46752529470509824, -0.45034473729996694, -0.43263023403831513, -0.4145286772300626, -0.39618287704724486, -0.3777299014938908, -0.35929978865683165, -0.34101459419609276, -0.3229877281407532, -0.305323531428062, -0.28811704314353104, -0.27145391299944577, -0.2554104192671164, -0.24005355935738348, -0.22544118788381518, -0.2116221848233828, -0.19863664386889546, -0.186516077844199, -0.17528364374903527, -0.1649543942661258, -0.15553556511403743, -0.14702690829850573, -0.13942108010783894, -0.1327040898324564, -0.1268558110908813, -0.1218505529022158, -0.11765768291482415, -0.11424229109729267, -0.11156587919239391, -0.10958705959126624, -0.10826224704341214 ], [ -0.5402092483465408, -0.5475036749594162, -0.5538486549502634, -0.5591246403591402, -0.5632182273362356, -0.5660254398854108, -0.5674550098925879, -0.5674314741463933, -0.5658979030699234, -0.5628180882436009, -0.5581780466004588, -0.5519867455728769, -0.5442760100741961, -0.5350996320259382, -0.5245317588899661, -0.5126646830054494, -0.4996061841069589, -0.48547659134615595, -0.4704057290602668, -0.45452989502357094, -0.43798899482906584, -0.42092392564693826, -0.4034742708870814, -0.3857763374802162, -0.3679615418114065, -0.35015513000667486, -0.33247520364097033, -0.3150320127195182, -0.2979274733072662, -0.28125486657924537, -0.26509867844750523, -0.24953454346438175, -0.2346292626937576, -0.22044087208157648, -0.20701874503127193, -0.19440371994337557, -0.18262824998047855, -0.17171657785384842, -0.16168494260654298, -0.15254182786636206, -0.1442882616600204, -0.1369181766003037, -0.1304188362885751, -0.12477132954624914, -0.11995112920412443, -0.11592870731578742, -0.11267019445695359, -0.1101380677132675, -0.10829185031374355, -0.10708880567174106 ], [ -0.5260596742135452, -0.532858496460247, -0.5387461270569782, -0.543611100210172, -0.5473479234406208, -0.5498600554534674, -0.5510628654725376, -0.5508864179813389, -0.5492779229551894, -0.5462037030119581, -0.5416505554109727, -0.535626426140384, -0.5281603610967717, -0.5193017499492565, -0.5091189257760229, -0.4976972227637976, -0.48513662148482045, -0.4715491247808449, -0.4570560073413447, -0.44178507056730754, -0.42586801425707316, -0.40943801148446474, -0.39262754608943096, -0.3755665462570274, -0.35838082474765615, -0.3411908176750992, -0.32411059979990087, -0.307247145043429, -0.29069979588832084, -0.2745599038664225, -0.2589106047330402, -0.24382669549215386, -0.22937458554406598, -0.21561230032062706, -0.2025895223589521, -0.19034766138129533, -0.1789199511477353, -0.16833157618547911, -0.15859983555269197, -0.14973435320993056, -0.14173734511961544, -0.13460395183688312, -0.12832264229061086, -0.1228756901144451, -0.11823971888724716, -0.11438630767524749, -0.11128264398600951, -0.10889220814492973, -0.1071754714612625, -0.10609059039477009 ], [ -0.5122276614359522, -0.5185495202003967, -0.5239975837753779, -0.5284679980465962, -0.5318626941772966, -0.5340920884634991, -0.5350777525877503, -0.5347549183999238, -0.5330746790968615, -0.5300057590244028, -0.525535747157867, -0.5196717226805718, -0.5124402414450786, -0.5038866949224864, -0.4940740937208437, -0.48308136161178283, -0.47100125013760497, -0.4579379967060976, -0.4440048506321925, -0.42932158323191266, -0.4140120821359839, -0.3982021092391963, -0.382017278895665, -0.36558129050226434, -0.3490144293004216, -0.33243233224343977, -0.31594500269595716, -0.2996560486399771, -0.28366211369872607, -0.2680524681900831, -0.2529087280265877, -0.23830467201615368, -0.22430613244209952, -0.21097093920959675, -0.19834890386718507, -0.18648183598944912, -0.17540359028107577, -0.16514014787025422, -0.15570973915572883, -0.14712301787569038, -0.13938329652709436, -0.13248685182722642, -0.12642330576274163, -0.12117608334666496, -0.11672294311943487, -0.11303657138987366, -0.11008522687754463, -0.107833419293763, -0.10624260375941807, -0.10527187283266837 ], [ -0.49873159496138475, -0.504595543918627, -0.5096221999760886, -0.5137148671878666, -0.5167824336420823, -0.5187418189038377, -0.5195203838552906, -0.5190581845922071, -0.5173099509655301, -0.5142466797589663, -0.5098567521875466, -0.5041465137668442, -0.49714028876915, -0.48887983777154215, -0.47942330131087024, -0.46884370188133695, -0.45722709782827126, -0.4446704946968771, -0.43127962215015403, -0.4171666786573827, -0.40244813356442277, -0.38724265910899014, -0.37166924571413623, -0.3558455345202174, -0.3398863832109131, -0.32390266585820787, -0.3080002953678622, -0.2922794483468887, -0.2768339667230375, -0.26175090790613076, -0.24711021526722354, -0.2329844827588805, -0.21943879114263543, -0.20653059807625962, -0.1943096698009117, -0.18281804790976086, -0.17209005021354784, -0.16215230957051063, -0.15302385825750475, -0.14471626762749223, -0.13723385315885872, -0.13057395348641088, -0.12472728879172379, -0.11967839944811465, -0.11540616068198284, -0.1118843639334508, -0.10908235124011867, -0.10696568583479371, -0.10549684051633124, -0.10463588524887557 ], [ -0.48558730961162466, -0.4910126704705547, -0.49563631501924, -0.4993682701422858, -0.5021239359422708, -0.503826304229578, -0.5044081338859661, -0.5038139799824044, -0.5020019733245196, -0.4989452556032152, -0.49463299233391617, -0.48907090992302177, -0.4822813321670506, -0.4743027222824612, -0.4651887660072975, -0.45500705652357953, -0.4438374607265368, -0.43177025746544, -0.4189041415695173, -0.4053441834386469, -0.3911998240972235, -0.3765829716523182, -0.36160624893494675, -0.3463814254629727, -0.3310180511609535, -0.3156222955282142, -0.30029598478396047, -0.28513582120743675, -0.27023276342548075, -0.2556715435828364, -0.24153029684905458, -0.22788028020008066, -0.21478566046932202, -0.20230335589083426, -0.19048292034400494, -0.17936646482334995, -0.16898861584022573, -0.15937651503843409, -0.15054986780334878, -0.14252105065679732, -0.13529528747970077, -0.12887090301453985, -0.12323965884039156, -0.11838717250440012, -0.11429341534762827, -0.11093327948228848, -0.10827720002211261, -0.10629181554263267, -0.10494064812634063, -0.10418478425498501 ], [ -0.4728082149269496, -0.47781444712903964, -0.48205358692201755, -0.48544196764994174, -0.4879010787063454, -0.4893595765105704, -0.48975524881872134, -0.4890368424644759, -0.48716566503250885, -0.48411687863168734, -0.4798804186342328, -0.47446149085145434, -0.46788062521510293, -0.4601732901973285, -0.4513890973427112, -0.441590647027266, -0.4308520830614883, -0.41925743392036113, -0.40689882193083055, -0.39387461914530136, -0.38028762092953267, -0.36624329690450264, -0.35184816533755675, -0.3372083228341021, -0.3224281474705555, -0.3076091812627322, -0.2928491876916024, -0.27824137222499723, -0.26387374845361244, -0.24982862949980644, -0.236182223539104, -0.2230043133083518, -0.21035800203379706, -0.19829951194268602, -0.1868780260432389, -0.17613556875657077, -0.16610692581175035, -0.1568196080967087, -0.148293867424115, -0.14054277401153015, -0.13357236560792263, -0.1273818765408271, -0.12196405167309887, -0.11730554575467833, -0.11338740353478505, -0.11018561095337287, -0.10767170340855325, -0.10581341399636457, -0.10457534301007565, -0.10391962989444714 ], [ -0.4604054191816165, -0.46501200321420305, -0.468885143823559, -0.4719470838612569, -0.47412500151733483, -0.47535283333354084, -0.47557304858329735, -0.4747382965874766, -0.4728128493661942, -0.469773768912846, -0.4656117410937377, -0.46033153578006014, -0.4539520737417689, -0.4465061030949289, -0.43803950957958093, -0.4286103036975027, -0.41828734221542124, -0.4071488507824591, -0.3952808181161663, -0.38277533068825165, -0.36972891088893406, -0.35624091238614725, -0.3424120150760777, -0.3283428498664687, -0.31413277161152264, -0.29987878766512044, -0.2856746403196506, -0.2716100341896739, -0.2577699945130677, -0.2442343393477967, -0.23107724759620463, -0.2183669054716192, -0.2061652161640759, -0.19452756075275135, -0.18350260250348882, -0.1731321311881281, -0.1634509485327169, -0.15448679987845926, -0.14626036015892818, -0.1387852839529078, -0.1320683293845405, -0.12610956392584682, -0.1209026568671554, -0.1164352587552463, -0.11268946304242466, -0.1096423402135619, -0.1072665303977377, -0.10553087741173284, -0.10440108558915961, -0.10384038064832102 ], [ -0.44838785317382723, -0.45261418665279385, -0.4561397333764194, -0.45889226833742813, -0.46080428003039564, -0.46181462329483675, -0.46187012278626266, -0.46092705860797045, -0.4589524667467806, -0.4559251931252988, -0.45183665109580606, -0.44669124726308, -0.44050645834849583, -0.43331256077611824, -0.4251520330412695, -0.4160786670986623, -0.40615643768809884, -0.3954581868700107, -0.3840641847631273, -0.3720606267548263, -0.3595381228968406, -0.3465902276905778, -0.3333120490291375, -0.31979896472024827, -0.30614546468467896, -0.2924441273559343, -0.2787847305446701, -0.265253490421096, -0.2519324174785287, -0.23889877539616045, -0.22622462753593076, -0.21397645622465566, -0.2022148417686015, -0.1909941910521762, -0.18036250926721598, -0.17036121243366964, -0.16102498248833996, -0.1523816703832579, -0.144452255397866, -0.13725087033301586, -0.1307849021462557, -0.12505517582344328, -0.1200562260100444, -0.11577665652910119, -0.11219958295521482, -0.10930314854255208, -0.1070610996330491, -0.10544340366856819, -0.10441689135606158, -0.10394590441664053 ], [ -0.4367623940588525, -0.44062769974396104, -0.4438238703808489, -0.44628385525410724, -0.44794509623640844, -0.4487510266282786, -0.44865252083398954, -0.447609235061459, -0.4455907805144968, -0.44257767606050386, -0.4385620369003857, -0.43354796867463846, -0.42755165164890996, -0.42060111580712034, -0.41273572341885995, -0.4040053896066707, -0.3944695825344992, -0.38419615235292126, -0.3732600416710253, -0.3617419301888281, -0.3497268626732292, -0.33730290339496727, -0.3245598522952283, -0.31158804937280105, -0.29847728486366365, -0.2853158243863214, -0.2721895508520109, -0.2591812189300836, -0.24636981340636244, -0.23382999994058595, -0.221631655481355, -0.20983946581830804, -0.19851257926286203, -0.18770430801556515, -0.17746187210937447, -0.16782618456663434, -0.1588316801743076, -0.15050619363265194, -0.1428708953326604, -0.13594029428546595, -0.12972231750085228, -0.12421847331144731, -0.11942410290734373, -0.11532872004804806, -0.11191643409290408, -0.10916644675594567, -0.10705360893259086, -0.10554902101513686, -0.10462065856145175, -0.10423400503864189 ], [ -0.4255339892309471, -0.4290572341541814, -0.4319419827303533, -0.43412601994480077, -0.4355514050899239, -0.43616583127003145, -0.43592393666681417, -0.43478851527416473, -0.43273157618116825, -0.4297352054010981, -0.4257921925217124, -0.4209063955277344, -0.4150928301437584, -0.4083774838744405, -0.4007968684097769, -0.3923973361130378, -0.3832341960091607, -0.37337067142341435, -0.3628767449015225, -0.3518279363251952, -0.340304057560973, -0.32838798209821995, -0.3161644616197827, -0.30371901401789336, -0.2911368996916457, -0.2785021956225414, -0.26589697018123515, -0.25340055620022506, -0.2410889157559427, -0.2290340874314878, -0.21730370557637102, -0.2059605811642643, -0.19506233513015692, -0.18466107733985093, -0.1748031273432883, -0.16552877646429132, -0.15687209420562243, -0.14886078498632282, -0.14151610346479326, -0.13485283777382062, -0.12887936965545466, -0.12359781866004771, -0.11900427440222838, -0.11508911669371813, -0.11183741870806252, -0.10922942376079292, -0.10724108236531438, -0.10584463337982808, -0.10500921153405862, -0.10470146345203724 ], [ -0.41470578006053055, -0.4179056049716895, -0.420496555547605, -0.4224209327314187, -0.42362509752828115, -0.42406070446829996, -0.4236858882832928, -0.422466358044434, -0.42037635440840715, -0.41739942999939644, -0.4135290201385146, -0.40876878064892325, -0.4031326805879844, -0.3966448495892069, -0.38933919107306847, -0.38125878299212723, -0.3724550962507562, -0.36298706695100363, -0.3529200619024489, -0.3423247774071018, -0.3312761094423521, -0.3198520294513327, -0.3081324945595125, -0.2961984147611003, -0.2841306930324933, -0.2720093479416792, -0.2599127225482516, -0.24791677853885363, -0.23609447082263868, -0.22451519532988307, -0.213244301538142, -0.20234266124546796, -0.19186628620367663, -0.18186598923859987, -0.1723870861784027, -0.16346913898390492, -0.15514574357170163, -0.14744436855195764, -0.1403862530789517, -0.1339863728942583, -0.12825348319983865, -0.12319024516510835, -0.11879343977926204, -0.1150542687353211, -0.11195873755294672, -0.1094881117622657, -0.10761943320175982, -0.10632608073567229, -0.10557835820010131, -0.10534409218092444 ], [ -0.404279225149411, -0.40717388351174816, -0.4094882732521556, -0.4111689098494068, -0.4121661597645562, -0.4124353598962693, -0.41193789208063564, -0.4106421725696, -0.4085245178106955, -0.40556985174411947, -0.40177222607283886, -0.39713513314861754, -0.39167160064930934, -0.3854040673587191, -0.3783640493038017, -0.3705916144957644, -0.36213469192233777, -0.35304824579158706, -0.3433933490947889, -0.33323619132211696, -0.3226470538149575, -0.31169928311574757, -0.3004682882255837, -0.28903058239355084, -0.27746288442787226, -0.2658412889808368, -0.254240510190754, -0.24273319875361454, -0.23138932914686838, -0.22027565145604133, -0.20945520110391747, -0.19898685972436925, -0.1889249613661813, -0.17931894000083637, -0.17021301672412315, -0.16164592780530862, -0.15365069751818927, -0.14625446212167603, -0.13947835308053513, -0.13333744831535188, -0.12784079973390927, -0.1229915434661486, -0.11878709622770911, -0.11521943737882501, -0.11227547197135657, -0.10993746589680886, -0.10818354064840474, -0.10698821257007607, -0.10632296000362873, -0.10615680150405205 ], [ -0.3942542226705347, -0.39686152847088724, -0.39891615920763096, -0.40036856117805303, -0.40117282863459763, -0.4012877201182615, -0.400677631923462, -0.39931349357790386, -0.39717355156797807, -0.39424401099632905, -0.3905195102806034, -0.38600341105432345, -0.380707893610898, -0.3746538569260648, -0.36787063084379723, -0.36039551578442136, -0.3522731717941606, -0.34355488351185803, -0.3342977304657481, -0.3245636929989459, -0.3144187231910638, -0.3039318076647636, -0.2931740455014471, -0.2822177600488235, -0.27113565859858113, -0.2600000491304786, -0.24888211889246092, -0.23785127578110155, -0.22697455049673942, -0.2163160553950465, -0.20593649489502797, -0.19589272222108312, -0.18623733807921594, -0.17701832845877163, -0.16827874091237782, -0.16005640114102782, -0.1523836741908663, -0.14528727671567931, -0.13878814823967067, -0.13290138988050204, -0.12763627837259894, -0.12299636141670578, -0.11897963749381846, -0.1155788196050257, -0.11278167834461206, -0.11057145575265426, -0.10892733797411791, -0.10782497222714338, -0.10723701216049597, -0.1071336754038742 ], [ -0.38462923130164905, -0.3869665149730591, -0.38877771253982907, -0.3900169344259035, -0.3906417427118169, -0.3906140741858672, -0.38990112277401, -0.38847615054208023, -0.3863191977493836, -0.38341766549686435, -0.379766749227893, -0.37536970742039705, -0.3702379568373587, -0.36439099316955964, -0.3578561432629481, -0.3506681618474816, -0.34286869132304504, -0.33450560737650126, -0.32563227580985704, -0.3163067469104403, -0.3065909130861266, -0.2965496535342733, -0.2862499867051246, -0.27576024759898254, -0.2651493028525691, -0.2544858124573346, -0.2438375431063614, -0.2332707348293166, -0.2228495199296685, -0.21263539140625975, -0.20268671708211716, -0.19305829557661358, -0.1838009509825116, -0.1749611645266368, -0.16658074342171325, -0.15869652932069944, -0.15134015098027442, -0.14453782761665024, -0.13831023068812198, -0.13267241220410808, -0.1276338069692542, -0.12319831438508844, -0.11936446266444378, -0.11612565482940018, -0.11347049203909121, -0.11138316606027743, -0.10984390946284195, -0.10882948972011164, -0.10831373201444738, -0.1082680552388795 ], [ -0.375401389237199, -0.37748546102656616, -0.379069041690843, -0.3801096553909051, -0.3805680888671432, -0.38040923009775096, -0.37960286866771586, -0.37812443079786395, -0.3759556231946517, -0.37308496259489915, -0.36950817198136227, -0.3652284296936727, -0.3602564637050233, -0.3546104897550187, -0.34831599836853505, -0.3414054016106953, -0.333917555349163, -0.3258971765306823, -0.3173941773587618, -0.30846293923543366, -0.2991615489705435, -0.2895510182330864, -0.2796945047594014, -0.269656550724399, -0.25950235022249435, -0.24929705428254323, -0.23910511851661687, -0.22898969559497884, -0.21901207241921583, -0.20923115024908756, -0.19970296518871244, -0.19048024636069216, -0.18161200974344582, -0.17314318691020947, -0.16511428962438135, -0.1575611131984127, -0.15051448345236318, -0.14400005373058788, -0.13803815947273246, -0.13264373805433538, -0.12782632086312917, -0.1235901028291736, -0.1199340919891001, -0.11685233837900699, -0.11433423796121933, -0.11236490378892772, -0.1109255935749125, -0.10999418055471788, -0.10954565320234233, -0.10955262901651741 ] ], "zauto": true, "zmax": 0.9545162194937075, "zmin": -0.9545162194937075 }, { "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.13308539430016508, 0.12238589756724379, 0.1123855031316594, 0.10333549127179968, 0.09556177622159712, 0.08945876646654134, 0.08544429182606292, 0.0838641764680133, 0.0848749792604269, 0.08837803868624287, 0.09405713412913298, 0.10148805944284003, 0.11024456771300256, 0.1199582907867027, 0.13033595953374738, 0.1411534168695812, 0.15224174667305004, 0.1634731762701145, 0.17474945746048554, 0.18599316537246605, 0.1971415523996393, 0.20814240908801718, 0.2189514112452934, 0.2295305156133994, 0.23984705448133437, 0.24987325996952495, 0.25958601937817044, 0.26896672365968305, 0.2780011213168967, 0.28667912952624114, 0.2949945832906176, 0.30294492291059305, 0.3105308315694213, 0.3177558401906098, 0.32462591778078154, 0.33114906383649234, 0.33733491636293195, 0.3431943855555974, 0.34873931983220074, 0.3539822080003004, 0.3589359190377503, 0.36361347924963217, 0.3680278853749944, 0.37219195144593026, 0.37611818674300035, 0.37981870194998346, 0.3833051405126725, 0.38658863219762596, 0.3896797658933522, 0.39258857877932835 ], [ 0.12771674306032205, 0.11702190183643081, 0.10706026972259462, 0.09808285575990867, 0.09041762846609484, 0.08446377867955324, 0.08064326896025413, 0.07929727986840794, 0.08056197223034638, 0.08430677212842029, 0.09018672415985549, 0.09776364177644324, 0.10661265919357736, 0.11637610663852772, 0.12677451474423815, 0.13759680652479173, 0.14868476671869935, 0.1599185484042966, 0.1712052400881427, 0.1824705628965411, 0.1936531679315346, 0.20470091954828346, 0.21556862040778055, 0.22621673290091812, 0.23661074499667553, 0.24672091144272543, 0.2565221739970383, 0.2659941270594115, 0.2751209469896473, 0.2838912439418124, 0.2922978243692924, 0.30033737151910106, 0.3080100619663559, 0.3153191405831248, 0.32227047630411015, 0.328872118394275, 0.33513386900630154, 0.3410668835989318, 0.3466833068682453, 0.35199594853183963, 0.3570180007039782, 0.36176279668069733, 0.3662436096202093, 0.37047348873192587, 0.37446513005533155, 0.37823077861378046, 0.38178215858825315, 0.3851304281168513, 0.3882861553528771, 0.39125931248926415 ], [ 0.12270290598407471, 0.11204858317508935, 0.10217046999866694, 0.09331980094607299, 0.08582564049138425, 0.08008837561422633, 0.07652674581401674, 0.07546668705352347, 0.0770141039167446, 0.08100290517221304, 0.08706355483874141, 0.094752040742263, 0.10365253903869327, 0.11342324091595471, 0.12380122785553639, 0.13458963510473151, 0.14564119000263623, 0.15684379839552318, 0.16810956063356097, 0.17936699622528446, 0.19055584081079693, 0.20162377186187655, 0.21252451514060522, 0.22321688829487454, 0.23366443161533051, 0.24383535892976554, 0.2537026354217235, 0.26324405347309543, 0.2724422310571282, 0.2812844986938797, 0.28976267053750593, 0.29787271393133297, 0.305614341667037, 0.3129905544742103, 0.3200071601394639, 0.32667229198241654, 0.33299594463233645, 0.3389895401370604, 0.34466553298549757, 0.3500370589220969, 0.35511762954954823, 0.35992087259798294, 0.36446031626261405, 0.3687492150342977, 0.3728004138342599, 0.37662624690358026, 0.38023846770665726, 0.3836482060296059, 0.38686594845565053, 0.38990153846264985 ], [ 0.11803468943472867, 0.10744705911988002, 0.09768687922722159, 0.0890066634105973, 0.08173625168640695, 0.07627417902323509, 0.07302889313909959, 0.07230078777707999, 0.07415659498005205, 0.07839250474624741, 0.08461917491611974, 0.0923941075600144, 0.10131653521333982, 0.11106405875359769, 0.1213919040864131, 0.13211788357722337, 0.14310561277176875, 0.15425051973957063, 0.16546947180581026, 0.17669359018970732, 0.1878635619828482, 0.1989268043679497, 0.20983594237648442, 0.2205481637245248, 0.23102510454833455, 0.24123300148208784, 0.25114291995022253, 0.260730934395671, 0.2699781910980321, 0.2788708266569524, 0.2873997449832282, 0.29556027398713747, 0.30335173221217965, 0.31077693790772937, 0.31784169083654806, 0.3245542524619186, 0.33092484454768223, 0.3369651806328359, 0.34268803988993396, 0.3481068888033209, 0.3532355529521881, 0.35808793886923, 0.36267780432224367, 0.36701857427337375, 0.3711231990632619, 0.37500405092787875, 0.37867285469920237, 0.38214064841169687, 0.38541776950273254, 0.3885138623410141 ], [ 0.11370916148236483, 0.10320417969033688, 0.09358502862166627, 0.08510705682891863, 0.07810117509780336, 0.07296164148263803, 0.07008017973492199, 0.06972236046371326, 0.07190850273002769, 0.07639635263933892, 0.0827814913273343, 0.09062869599931947, 0.09955621559961479, 0.10926292558942001, 0.11952272163678886, 0.1301680129932093, 0.14107305598788245, 0.1521405860674663, 0.1632921204034873, 0.17446136585270078, 0.18559002685127315, 0.19662538470602248, 0.20751912571670125, 0.2182269905890528, 0.22870890257028587, 0.2389293115141002, 0.24885756614537707, 0.25846819431183005, 0.26774102755751894, 0.2766611497723775, 0.28521867968513426, 0.2934084149269344, 0.3012293736518628, 0.3086842709550777, 0.3157789641223568, 0.3225218951762314, 0.3289235528006238, 0.3349959695407482, 0.340752264753992, 0.3462062393642419, 0.3513720250603547, 0.3562637880667291, 0.3608954858329774, 0.36528067376581036, 0.36943235830544785, 0.3733628921106447, 0.37708390677600845, 0.3806062783095111, 0.38394012051790444, 0.3870948014697602 ], [ 0.10973468561886067, 0.09931885291764507, 0.08985302106116913, 0.08159738094537962, 0.07488476682064069, 0.07010332075999687, 0.06762235135922412, 0.06766468588939283, 0.07019898348584638, 0.07494516756900935, 0.081488001612153, 0.08940347182003008, 0.0983308006051103, 0.10799050788728222, 0.11817479524729149, 0.12873016015497293, 0.1395411161897039, 0.15051752297613424, 0.16158555095456675, 0.1726816392844747, 0.18374875349402137, 0.19473434065694203, 0.2055894777062369, 0.21626879342689892, 0.22673082362097843, 0.23693853695904854, 0.24685984500444969, 0.2564679793234869, 0.2657416769213317, 0.27466515977208744, 0.28322792456184753, 0.29142437642824154, 0.29925334803836473, 0.30671754571405957, 0.3138229601978997, 0.3205782732572244, 0.3269942842430746, 0.33308337397835797, 0.33885901749711667, 0.34433535240338076, 0.3495268059500672, 0.3544477812194609, 0.3591124008314305, 0.3635343052276042, 0.36772650161987736, 0.3717012590288506, 0.37547004439006804, 0.3790434944242288, 0.3824314178269502, 0.3856428223237377 ], [ 0.1061358769331474, 0.09580841596358197, 0.08649950024778205, 0.07847653339748417, 0.07207553536917913, 0.06767706746144703, 0.06562290889346246, 0.06608659542628713, 0.06898190454943212, 0.07399277072135174, 0.08069686306824245, 0.0886837086147489, 0.09761384518532205, 0.1072286558644885, 0.11733760815058739, 0.1278004420904559, 0.13851141856496224, 0.14938733477917887, 0.16035908425078868, 0.17136608971489872, 0.1823529450747968, 0.19326769475702707, 0.20406126349920162, 0.2146876230641601, 0.225104355284723, 0.23527334744017578, 0.24516143316546982, 0.25474086365857496, 0.2639895542204703, 0.2728910969403929, 0.28143456117041954, 0.28961412095854716, 0.29742855562971104, 0.3048806693420806, 0.3119766705650355, 0.3187255453227602, 0.3251384503641564, 0.33122814518720733, 0.33700847560419755, 0.3424939164703893, 0.34769917727594407, 0.3526388713627482, 0.357327247374749, 0.36177797998872807, 0.36600401584109793, 0.3700174697470993, 0.3738295657251069, 0.3774506169479557, 0.3808900385257915, 0.3841563869740136 ], [ 0.10295790427210186, 0.09271437553705145, 0.08356096811544615, 0.07577482280741384, 0.06969647609495531, 0.06569736151066002, 0.06408681553548556, 0.06498381530480922, 0.06824611923417478, 0.07352478650827646, 0.08039383947600241, 0.08845757384679649, 0.09739709332190923, 0.10697308833872884, 0.11701077346827166, 0.1273820080370624, 0.13799013864720866, 0.1487586422441825, 0.1596231882750415, 0.17052645555138488, 0.18141508142278984, 0.19223820404879477, 0.20294712678544505, 0.21349569503702895, 0.22384104290419152, 0.233944442339222, 0.24377206608785054, 0.2532955494949685, 0.26249229856695916, 0.27134553885548135, 0.27984413122948115, 0.2879821982075894, 0.2957586112333078, 0.303176388400239, 0.3102420466774881, 0.31696494503060174, 0.3233566466640551, 0.3294303209693662, 0.33520019918040395, 0.34068109238454797, 0.34588797636007396, 0.3508356445353349, 0.35553842798529717, 0.3600099795991594, 0.3642631182107507, 0.3683097274696564, 0.3721607034776661, 0.37582594468826785, 0.3793143772540571, 0.38263400890518756 ], [ 0.10026930842634396, 0.09010650479990602, 0.08110723484591562, 0.07356063129593855, 0.06781250284950113, 0.06422279703793697, 0.06306328171261387, 0.06439454299042009, 0.06801965546775583, 0.07356153384517618, 0.080594145245393, 0.08873720446845039, 0.09769101033395834, 0.10723353882753248, 0.11720390028013786, 0.12748470107488033, 0.13798751816881907, 0.14864210133525232, 0.15938884122515853, 0.1701738764570731, 0.1809462683221583, 0.1916567381750522, 0.202257512079078, 0.2127028659362613, 0.22295002520074314, 0.23296014724005276, 0.24269919413607158, 0.2521385796099917, 0.26125553810326757, 0.2700332127300193, 0.2784604912071254, 0.28653163682928695, 0.2942457682467338, 0.3016062406877342, 0.3086199754701757, 0.31529677662840194, 0.3216486649669503, 0.3276892518979344, 0.3334331685528046, 0.33889556004209265, 0.3440916503018681, 0.34903637953337974, 0.3537441136008221, 0.35822842270737243, 0.36250192507106194, 0.36657619006941233, 0.3704616943598146, 0.3741678237890233, 0.37770291347621493, 0.3810743182914244 ], [ 0.09816220767877408, 0.0880838208374372, 0.079243137184812, 0.07194256379031286, 0.06653238899351441, 0.06335703518882614, 0.06264524061692722, 0.06439750569239724, 0.0683667935392281, 0.07415465247163014, 0.08133906748164897, 0.08955560862494412, 0.09852208593789882, 0.10803146903546858, 0.11793466908945942, 0.12812342932783305, 0.13851646990365948, 0.14904919260239588, 0.15966647052854027, 0.1703179588149139, 0.18095541449880223, 0.19153155797163238, 0.20200003756169446, 0.2123160941233369, 0.22243757660450664, 0.23232603138621602, 0.24194766841896048, 0.25127408472384144, 0.26028269202286686, 0.2689568455087062, 0.27728570426276167, 0.2852638724583825, 0.2928908774958751, 0.3001705401821523, 0.307110286207629, 0.3137204400147905, 0.3200135334598448, 0.3260036535151926, 0.3317058461796796, 0.3371355879130207, 0.34230833121976045, 0.34723912729577405, 0.3519423257082317, 0.35643134872345456, 0.3607185359894884, 0.36481505373813194, 0.36873086145645606, 0.3724747280833207, 0.3760542892190887, 0.3794761366033373 ], [ 0.09674859783505818, 0.08677062265610842, 0.07810410254039078, 0.07106408956004921, 0.06600190110899182, 0.06324011431028813, 0.06295921719707201, 0.06510131377120167, 0.06937781078411812, 0.0753778401615294, 0.08268799712107779, 0.09096006042875301, 0.0999275051350674, 0.10939584327914592, 0.11922550926051327, 0.1293155546367631, 0.13959051324105703, 0.14999057274249483, 0.160464621331175, 0.17096568878581175, 0.18144833743248265, 0.1918675770508791, 0.2021788856530316, 0.21233893927407582, 0.2223067001682015, 0.23204458124878702, 0.24151948424807437, 0.2507035874912558, 0.2595748268336399, 0.26811706506033484, 0.2763199798351456, 0.28417871989639315, 0.29169338689270846, 0.298868399656656, 0.30571179210472765, 0.3122344879081643, 0.31844958639951554, 0.3243716859610129, 0.33001626392757455, 0.33539912599228455, 0.34053593315906233, 0.3454418102715736, 0.3501310368623426, 0.3546168183434082, 0.3589111332843001, 0.3630246506345939, 0.3669667092315162, 0.3707453507999532, 0.37436739692291837, 0.37783856014733236 ], [ 0.09615174100858126, 0.0863060464105963, 0.07784342459978527, 0.07108809965671684, 0.06638558626045574, 0.06402832494492822, 0.06414502175699584, 0.06662566551782492, 0.07115261999560757, 0.07731315752503634, 0.08470727597531022, 0.09300321058747477, 0.10194818473451467, 0.11135774599518489, 0.12109947647469145, 0.131077750054274, 0.1412213798810994, 0.15147424437765955, 0.16178854909700324, 0.17212034226985776, 0.18242691349453358, 0.19266569626983368, 0.2027942814955393, 0.21277115556048345, 0.22255681376530553, 0.23211496331983075, 0.24141360773701762, 0.2504258826614939, 0.25913058166240527, 0.2675123635709902, 0.2755616691181349, 0.283274395502824, 0.2906513862654231, 0.2976977940535428, 0.3044223688447843, 0.3108367165388283, 0.31695456437993014, 0.32279106153988585, 0.32836213594311675, 0.3336839222253888, 0.338772270531692, 0.343642341517607, 0.34830828924496504, 0.3527830305141426, 0.35707809646618793, 0.3612035599895028, 0.3651680305922464, 0.36897870698895585, 0.37264147673412984, 0.3761610518349515 ], [ 0.09649269834933094, 0.08682706802377424, 0.07861117181402787, 0.07217164892307142, 0.06783838967187807, 0.06586509570661782, 0.06632868045307798, 0.06907803751149173, 0.07378158133170247, 0.08003560853957568, 0.08745799751575756, 0.09573355954828511, 0.10462142302311152, 0.11394477503261853, 0.12357602016920306, 0.13342283280500497, 0.14341666039488174, 0.15350381551200623, 0.16363893590497605, 0.17378053946805533, 0.1838883825121618, 0.19392229370544478, 0.20384212165051813, 0.2136084255417848, 0.223183565103623, 0.23253290283919145, 0.24162590546654622, 0.250437008107459, 0.25894617328356423, 0.2671391307444756, 0.2750073216900093, 0.28254759329378043, 0.2897616995488397, 0.29665566583613606, 0.30323907051800786, 0.3095242898909537, 0.315525744840928, 0.3212591796720273, 0.32674099640848664, 0.3319876615951649, 0.3370151972087212, 0.341838762604353, 0.3464723303132652, 0.35092845486653124, 0.3552181306057112, 0.3593507316617239, 0.36333402499289746, 0.3671742456367869, 0.3708762222033077, 0.37444354014361925 ], [ 0.09787388493325506, 0.08844760994513123, 0.08052856686011546, 0.07443636123944931, 0.07047434176552626, 0.06885114601608257, 0.06959648296241198, 0.07253233134576359, 0.07732833485331794, 0.08359948167815434, 0.09098523861047386, 0.09918705709108899, 0.10797442462016364, 0.1171761164146642, 0.126667290945517, 0.13635703819197567, 0.14617782406397506, 0.15607708558051642, 0.16601089925837656, 0.17593956456059984, 0.18582489310118944, 0.1956289322553198, 0.20531379785045709, 0.21484226717372942, 0.22417879890842568, 0.23329069514019607, 0.2421491889430988, 0.25073031474256785, 0.2590154861103083, 0.2669917599703381, 0.2746518049156773, 0.2819936152397968, 0.28902002401825794, 0.2957380714381141, 0.302158281721264, 0.3082938959958612, 0.3141601011815048, 0.3197732875251957, 0.32515036045852286, 0.3303081261593008, 0.33526276458385773, 0.34002939868432347, 0.34462176392917576, 0.3490519780437195, 0.3533304070855896, 0.3574656206331531, 0.3614644260910168, 0.3653319700097104, 0.3690718929536805, 0.37268652386422474 ], [ 0.10036339098397325, 0.0912391970217192, 0.08366547889095963, 0.0779444334076353, 0.07434366838433919, 0.07302485779450581, 0.07397909827696102, 0.07701599985830086, 0.08181915558971752, 0.08802950846035104, 0.09531080118967601, 0.10338125529736052, 0.11201969052606064, 0.12105899314759765, 0.13037547406716146, 0.13987807491974516, 0.14949884884847559, 0.1591851212396498, 0.1688934045218164, 0.1785850253006435, 0.18822333853924547, 0.19777231758061625, 0.20719623698780285, 0.21646012733116998, 0.22553068439852073, 0.23437735413776792, 0.24297337588808307, 0.2512966356273407, 0.25933024623224815, 0.26706282569182244, 0.2744884837702549, 0.2816065530278627, 0.28842111360041145, 0.2949403657284386, 0.3011759027087016, 0.30714193220094876, 0.3128544874804931, 0.31833066343600597, 0.32358790548879457, 0.32864337339288413, 0.33351339608406744, 0.33821302831324573, 0.34275571466373944, 0.3471530617109224, 0.3514147146059648, 0.3555483303836372, 0.3595596369650538, 0.3634525642982214, 0.3672294324568137, 0.37089118083828704 ], [ 0.1039844348481617, 0.09521926733588623, 0.08802892591442833, 0.08268922123255361, 0.07942685979863895, 0.07835951236879334, 0.07945023546651343, 0.08250856524182554, 0.08724079726272846, 0.09331821375478255, 0.10043043671577544, 0.10831270500299608, 0.11675276254040937, 0.12558683356711686, 0.13469139066257219, 0.1439741275593893, 0.15336557160961387, 0.1628118916734336, 0.1722691221130285, 0.18169887398267684, 0.19106549171194437, 0.20033450688064194, 0.20947215316805445, 0.2184456552319778, 0.22722399537878388, 0.23577889001121902, 0.24408576055646808, 0.252124546802079, 0.2598802724403763, 0.2673433253246326, 0.2745094548256542, 0.28137951539512274, 0.2879590007121577, 0.2942574192672693, 0.3002875626783104, 0.3060647147953296, 0.311605844487656, 0.31692881905006276, 0.32205166903240684, 0.3269919292423363, 0.33176607474117503, 0.33638906482388176, 0.3408740022416095, 0.345231909358657, 0.34947161768551205, 0.35359976250751574, 0.3576208703651137, 0.36153752413997337, 0.3653505885973637, 0.36905947847251974 ], [ 0.10871283193633358, 0.10035052812020422, 0.09356580797176846, 0.08860232491393746, 0.08564545259136935, 0.08477535362713454, 0.0859373224561698, 0.08894950940275304, 0.09354554563576949, 0.09942875181608382, 0.10631519738160321, 0.11395742870437668, 0.12215224897755411, 0.13073912858988834, 0.1395943517164897, 0.1486237937309814, 0.1577557428516012, 0.1669344427063823, 0.1761147043318348, 0.1852577618358961, 0.1943284101608852, 0.2032933400940263, 0.21212048514291432, 0.22077913148363812, 0.22924052135484937, 0.23747869715168377, 0.24547137661136798, 0.25320070552757856, 0.260653791748957, 0.26782297475291456, 0.27470582467172583, 0.28130489232642947, 0.2876272487613684, 0.29368386119131445, 0.29948885463074904, 0.3050587069445214, 0.310411421288901, 0.3155657149831018, 0.32054025836127403, 0.32535299136054713, 0.33002053957304833, 0.3345577452484109, 0.3389773223413771, 0.34328963831151976, 0.3475026192482693, 0.35162176932549727, 0.35565029090524447, 0.35958928807941126, 0.36343803423370824, 0.3671942833877533 ], [ 0.11448240485485207, 0.10655014555701833, 0.10017663661894316, 0.09557137939229175, 0.09288178556787328, 0.0921584891501157, 0.09333749799269728, 0.09625064958553478, 0.10066020940397194, 0.1063011392631174, 0.1129156111708359, 0.12027366139237587, 0.12818162506951783, 0.13648265295070547, 0.1450530484654488, 0.15379680421805725, 0.1626396727325026, 0.17152351987674078, 0.1804014069133779, 0.18923366235848216, 0.19798505490802576, 0.2066230442280845, 0.21511697620328576, 0.22343801569217167, 0.2315595779284222, 0.23945802535152214, 0.24711342961295044, 0.25451024643746956, 0.26163780276749565, 0.2684905430755597, 0.2750680203148028, 0.2813746451594501, 0.2874192255611744, 0.29321433895916543, 0.29877558383564556, 0.30412075764086194, 0.3092690059216363, 0.3142399837689437, 0.3190530660039029, 0.32372663708946, 0.3282774856714386, 0.3327203219808759, 0.3370674292074964, 0.34132845263826656, 0.34551032321339764, 0.3496173056175714, 0.3536511555235172, 0.3576113664873719, 0.3614954844745544, 0.3652994671212734 ], [ 0.12119562227988305, 0.11370420061174226, 0.10773351836645112, 0.1034601185252308, 0.10099895699010837, 0.10037888514998806, 0.10153279100702199, 0.10430842487147053, 0.10849575281879655, 0.11385958340766711, 0.12016711390891831, 0.12720580882412574, 0.13479210632754413, 0.14277357803061713, 0.1510271552067792, 0.15945529727541438, 0.16798130068166703, 0.17654451231761722, 0.18509595333447018, 0.19359467975179484, 0.20200505257165305, 0.21029495085254662, 0.21843484532413174, 0.22639756895538415, 0.23415857934331333, 0.2416965027750849, 0.24899377250543173, 0.25603721305666094, 0.26281846774004286, 0.2693342101566175, 0.2755861173086724, 0.28158061011073954, 0.2873283865735786, 0.2928437849964217, 0.2981440208547306, 0.3032483433660402, 0.30817715726100603, 0.31295115294627324, 0.31759048449153443, 0.3221140299060206, 0.32653876207229815, 0.33087925158032855, 0.33514731477170895, 0.3393518119375689, 0.34349859232403557, 0.3475905749657072, 0.3516279479468367, 0.3556084639251194, 0.35952780690543423, 0.36338000436908624 ], [ 0.12873583728764063, 0.1216824686169583, 0.11609651767865632, 0.11212480472158305, 0.10985593686450751, 0.10930353976418963, 0.11040142315211185, 0.11301357546116206, 0.11695548612613395, 0.1220192414265096, 0.12799546877857002, 0.13468869095799932, 0.14192592653053374, 0.14956000209020767, 0.15746930738958398, 0.165555404245554, 0.17373950956940434, 0.18195858140475732, 0.19016153502846644, 0.1983059558912903, 0.20635552887883382, 0.2142782660434955, 0.22204549783472569, 0.22963150704246926, 0.2370136354380353, 0.24417267853346808, 0.25109339669786757, 0.25776500132119995, 0.26418151325182276, 0.2703419297375112, 0.27625017060425633, 0.2819148019914023, 0.2873485561688288, 0.29256767955564617, 0.29759114934220315, 0.30243980342279375, 0.3071354297452631, 0.31169986037137315, 0.31615411287077333, 0.3205176172706344, 0.324807560711852, 0.32903837435512207, 0.3332213782425185, 0.33736459026356663, 0.341472695778014, 0.34554716556554776, 0.3495865023175224, 0.3535865904114985, 0.3575411205302567, 0.36144205984426186 ], [ 0.13697826418219086, 0.13035037782636033, 0.12512556498344643, 0.12142507424008797, 0.11931687182874369, 0.1188044345324994, 0.11982488083097378, 0.12225765929236322, 0.12594107415510372, 0.13069161195933524, 0.13632142997282787, 0.14265144318281675, 0.1495195232310122, 0.15678451877489913, 0.16432717143412365, 0.1720489353924434, 0.1798695260131053, 0.18772385306191616, 0.19555885249994823, 0.2033305991438362, 0.21100195001842664, 0.21854083901692734, 0.22591922953513086, 0.23311264450285105, 0.24010013863561822, 0.24686455516350633, 0.253392913089966, 0.25967679293012147, 0.26571262037440563, 0.2715017813223609, 0.27705053331809987, 0.28236970490881824, 0.28747419496505383, 0.2923822988590892, 0.29711489848813405, 0.3016945594452564, 0.3061445819816305, 0.3104880532514522, 0.31474694687724053, 0.3189413121375895, 0.3230885890711802, 0.3272030776624628, 0.3312955794234506, 0.3353732187793524, 0.33943944058088726, 0.343494169767682, 0.34753411059181955, 0.3515531565625733, 0.3555428787648899, 0.35949305946172194 ], [ 0.14579828880611967, 0.13957715732739376, 0.13468770627889176, 0.1312298645458307, 0.12925579672008705, 0.12876252624565784, 0.12969170669056898, 0.13193692237989732, 0.13535649343308342, 0.13978842573774644, 0.14506438118463927, 0.1510207667114992, 0.15750633973289538, 0.16438657558385247, 0.1715454061297791, 0.17888500949360603, 0.18632428593247202, 0.19379657996506594, 0.20124712342788903, 0.20863057531500886, 0.21590892224597547, 0.22304988724204894, 0.2300258876625751, 0.23681349762119427, 0.24339331270410527, 0.24975008607838295, 0.25587300105541055, 0.26175595912793714, 0.26739778708089007, 0.2728022955526158, 0.2779781496886711, 0.2829385374739587, 0.2877006417561763, 0.2922849378049362, 0.29671434998991253, 0.3010133094529576, 0.3052067599918544, 0.3093191619977013, 0.31337354417934865, 0.3173906498345457, 0.32138821851515553, 0.3253804352372894, 0.3293775683976212, 0.33338580511812915, 0.3374072799637943, 0.3414402810745271, 0.34547960783924975, 0.34951704715202214, 0.3535419314625599, 0.357541741267438 ], [ 0.15507693731117028, 0.14924058243987995, 0.144660758948619, 0.1414199642573379, 0.13955842298838594, 0.139069275071828, 0.1398991797750258, 0.14195433195464155, 0.1451104167953361, 0.14922424993633318, 0.15414498128160806, 0.15972345544500224, 0.16581912469371415, 0.17230449460707042, 0.17906739856631146, 0.18601152835031015, 0.1930556854742602, 0.20013221027024236, 0.20718500738646212, 0.2141675199685372, 0.22104091582106736, 0.2277726489273126, 0.23433546306734745, 0.24070682322368517, 0.24686870246894155, 0.2528076190787292, 0.2585148082004784, 0.26398641930643535, 0.26922364872040744, 0.2742327400711127, 0.2790248102297566, 0.28361548133325176, 0.2880243194738239, 0.29227409715418656, 0.29638990981880553, 0.30039818697960613, 0.30432564584023164, 0.30819823982894023, 0.31204015581076744, 0.31587291163419245, 0.3197145998821107, 0.3235793143762442, 0.3274767837136828, 0.33141222193728304, 0.33538639174098683, 0.3393958618932158, 0.34343342919943126, 0.34748866732894984, 0.3515485607034266, 0.35559818134677806 ], [ 0.1647039919367142, 0.1592292445561674, 0.15493464792408004, 0.15188859524307977, 0.15012233546165488, 0.14962684642415025, 0.15035380218354136, 0.15222047733744432, 0.15511752789188712, 0.15891812487514034, 0.16348698544674228, 0.1686882599276833, 0.1743917237145731, 0.18047711631334884, 0.18683672362168824, 0.19337644586658226, 0.2000156732394618, 0.20668632659947445, 0.2133314180733119, 0.21990344864945682, 0.2263628938260514, 0.23267694608404138, 0.23881859848783044, 0.24476607931283764, 0.2505025912338238, 0.25601627333631344, 0.2613002889331743, 0.2663529430752118, 0.2711777457904193, 0.2757833556464119, 0.28018335929788724, 0.28439586358390173, 0.28844289597721307, 0.29234962613163584, 0.2961434357806357, 0.2998528762947148, 0.30350656266355336, 0.30713205915584496, 0.3107548148636853, 0.31439720618092354, 0.31807773763785957, 0.3218104425073993, 0.32560451088882203, 0.329464156831896, 0.33338871918496643, 0.3373729750864749, 0.3414076320449791, 0.3454799555792931, 0.3495744849904061, 0.35367378991543685 ], [ 0.17457942962478565, 0.16944325065864912, 0.16541143330569555, 0.16254099975216846, 0.16085644277526634, 0.1603476913617716, 0.16097118099918242, 0.16265382968475858, 0.16529916003573816, 0.16879452647146523, 0.17301843784616588, 0.17784720220078284, 0.183160416158691, 0.18884508086869717, 0.19479832040707976, 0.200928816207076, 0.20715716663446823, 0.21341543990585626, 0.21964621057140152, 0.2258013552452129, 0.23184083806350134, 0.23773165149734654, 0.24344700670731495, 0.24896580132109672, 0.2542723394855181, 0.2593562431542543, 0.2642124749142787, 0.26884138871330965, 0.2732487318253822, 0.2774455353166486, 0.28144784777238174, 0.2852762856804376, 0.2889553921423804, 0.29251281272968305, 0.29597831294269994, 0.2993826755608602, 0.3027565277294238, 0.3061291561948092, 0.309527373776491, 0.3129745000706327, 0.3164895139484551, 0.32008642465386516, 0.3237738929879828, 0.32755511570996376, 0.3314279669470584, 0.33538537234439425, 0.33941587692251013, 0.34350435758905823, 0.34763282661531975, 0.35178127296550604 ], [ 0.18461378866540015, 0.17979403321522675, 0.17600469182089085, 0.17329360516795128, 0.17168014612828825, 0.17115388710206375, 0.1716756376570811, 0.17318066123226356, 0.1755835271178977, 0.17878387854974315, 0.18267240777929566, 0.18713646100286876, 0.1920648715573046, 0.19735178770140416, 0.2028994044153914, 0.20861962738006104, 0.21443479296873413, 0.2202776371024802, 0.22609074272656343, 0.23182569836047912, 0.237442172563295, 0.24290706035383, 0.24819379909915004, 0.25328189389921163, 0.25815664401750216, 0.2628090268083854, 0.26723567491294714, 0.2714388748385163, 0.27542651765399506, 0.2792119423013354, 0.282813626140451, 0.2862546936852975, 0.28956223165866424, 0.292766415664944, 0.2958994704120592, 0.29899450095726837, 0.3020842461339379, 0.3051998160642306, 0.30836948219704735, 0.31161758940007217, 0.3149636544439063, 0.31842170364587297, 0.3219998853414946, 0.3257003720161241, 0.3295195448380346, 0.3334484327044568, 0.3374733611757167, 0.3415767555313143, 0.3457380373542559, 0.3499345552606692 ], [ 0.19472791237105402, 0.19020371358411928, 0.18663863540174458, 0.18407306552729263, 0.1825224526456567, 0.18197642146021617, 0.18239971399095428, 0.1837347923489362, 0.18590571298547393, 0.18882276982581409, 0.19238740176687766, 0.19649693095248588, 0.201048799941211, 0.2059440825271454, 0.21109014582492058, 0.21640243835852488, 0.22180546631326337, 0.22723309000690745, 0.23262831686908286, 0.2379427816035403, 0.24313609051374827, 0.24817517210674672, 0.25303372961476917, 0.2576918424920152, 0.26213572074087405, 0.2663575826824637, 0.27035560524411345, 0.27413388551300455, 0.27770235138234445, 0.2810765652661398, 0.28427737586484936, 0.287330387069718, 0.290265229081003, 0.2931146338808897, 0.29591333470803083, 0.2986968263822875, 0.30150003916538065, 0.3043559918770539, 0.30729449852405155, 0.3103410051024338, 0.31351562834582714, 0.31683245576047664, 0.32029914723460223, 0.3239168549295566, 0.32768045300669607, 0.3315790452669251, 0.3355966998772552, 0.339713348026186, 0.3439057783800311, 0.3481486611990429 ], [ 0.20485236711990118, 0.20060427988837276, 0.19724716714531662, 0.19481531840001293, 0.19332112876515867, 0.19275449818970825, 0.193083652828027, 0.19425725444631764, 0.19620751724197033, 0.19885397671060917, 0.2021075469052836, 0.2058745377927531, 0.21006036118149848, 0.21457271995146365, 0.21932414773122352, 0.22423384289075446, 0.22922881630121658, 0.23424443773754836, 0.2392245119592479, 0.24412103693404597, 0.2488937933093932, 0.2535098908713332, 0.25794336195669815, 0.26217485168603594, 0.2661914172373339, 0.2699864177256429, 0.2735594547706539, 0.2769163117620513, 0.28006883614290834, 0.2830347121173064, 0.28583707940632097, 0.2885039656688105, 0.2910675149883352, 0.2935630116954197, 0.29602771707888914, 0.29849955535183714, 0.30101570325846394, 0.30361115313271564, 0.3063173299115502, 0.3091608464678473, 0.3121624771237555, 0.31533641588249145, 0.3186898647534837, 0.3222229709622042, 0.325929103314261, 0.32979543137818856, 0.33380374988912564, 0.33793147718134303, 0.34215275139794243, 0.34643955113333996 ], [ 0.21492671617672598, 0.21093672042365758, 0.20777296819090718, 0.20546471085678777, 0.20402192435042424, 0.20343488815894184, 0.20367488452983964, 0.20469591244823018, 0.20643721364801465, 0.20882635646632605, 0.21178261199868292, 0.2152203718903711, 0.21905238679345762, 0.2231926445109013, 0.2275587569586022, 0.23207378421589883, 0.23666748693565637, 0.24127705662940438, 0.24584741790303716, 0.2503312215993892, 0.2546886516115983, 0.2588871538222952, 0.26290116895843124, 0.2667119187695779, 0.2703072627685678, 0.27368161511350214, 0.2768358904689438, 0.2797774346242095, 0.28251988988394094, 0.2850829458048066, 0.2874919316266277, 0.28977721678814433, 0.29197339952229784, 0.29411828013617314, 0.29625163456342285, 0.2984138241523779, 0.30064429787866837, 0.30298006108376346, 0.3054541978371416, 0.30809453949653287, 0.31092256802197843, 0.3139526283835075, 0.3171915010018518, 0.3206383553399651, 0.32428507358553854, 0.32811690336219274, 0.3321133745986318, 0.33624940076138143, 0.3404964795579498, 0.34482391218352954 ], [ 0.22489875247175595, 0.2211501819812111, 0.21816665205925773, 0.21597320753912636, 0.21457786970252404, 0.21397132882017728, 0.2141275295013794, 0.21500506787634388, 0.2165492534969378, 0.2186946520741819, 0.22136791268229683, 0.22449068638566966, 0.22798245685119692, 0.23176312664559692, 0.2357552370355721, 0.23988574389300024, 0.24408732349575354, 0.24829923211128888, 0.25246778415109905, 0.256546539436692, 0.2604962984892967, 0.26428499726063676, 0.26788757352099796, 0.2712858514896052, 0.27446846426226196, 0.27743080907485784, 0.28017501090172614, 0.28270985643847335, 0.2850506532778415, 0.2872189676129035, 0.28924219747669533, 0.29115294680449993, 0.29298817808077027, 0.2947881376477339, 0.29659506736179986, 0.2984517381694599, 0.30039986360935234, 0.30247847172567427, 0.3047223293173221, 0.30716051969654506, 0.3098152717191402, 0.3127011227711256, 0.31582447267433206, 0.31918355222266626, 0.3227687939779714, 0.3265635593139288, 0.3305451491723336, 0.334686009680285, 0.3389550386835524, 0.34331890439912083 ], [ 0.2347237448313117, 0.2312011826657262, 0.22838599508191362, 0.22629967662935543, 0.2249486372312668, 0.22432396652247746, 0.22440191815053934, 0.22514505290029344, 0.22650393342607084, 0.22841923612542236, 0.2308241331648876, 0.23364679472049288, 0.23681286574462734, 0.24024778404224906, 0.2438788292816348, 0.24763682602789844, 0.25145746471901886, 0.2552822465374802, 0.2590590943719965, 0.26274269697295877, 0.26629466432630505, 0.26968356966163043, 0.27288494021517623, 0.2758812389466819, 0.27866185701049373, 0.28122311535515426, 0.28356825575599565, 0.28570738819064767, 0.2876573532380826, 0.2894414551128244, 0.29108902284837035, 0.2926347638500456, 0.2941178854538009, 0.2955809761239856, 0.2970686580880047, 0.2986260465332601, 0.3002970751123529, 0.30212277059216835, 0.3041395774764445, 0.306377842602216, 0.3088605670411499, 0.3116025167686799, 0.3146097554905978, 0.31787962621041477, 0.3214011679444264, 0.32515591652068226, 0.3291190090180404, 0.33326049363907206, 0.3375467417558671, 0.34194186529255705 ], [ 0.2443637236703841, 0.24105288820520135, 0.23839523936416163, 0.23640924385286155, 0.23509995740465955, 0.23445883482026775, 0.23446412722968005, 0.23508182106943404, 0.23626704032081228, 0.2379658126702264, 0.24011708830194972, 0.24265489391321027, 0.24551050353188267, 0.2486145135523311, 0.25189872439848043, 0.2552977559643655, 0.2587503561117792, 0.26220039612943297, 0.26559757835000286, 0.2688979041510807, 0.27206396256290827, 0.275065100409204, 0.2778775261291975, 0.2804843841927349, 0.2828758186588821, 0.28504902589821285, 0.28700828001436207, 0.28876490146948786, 0.2903371305900255, 0.29174986334246766, 0.29303420720012974, 0.2942268202498775, 0.29536900712425407, 0.2965055610072661, 0.29768336160803044, 0.29894976367540455, 0.3003508373703981, 0.30192954751144463, 0.30372397932478634, 0.3057657295478387, 0.3080785799463885, 0.3106775537558156, 0.3135684251716422, 0.3167477116108521, 0.32020313409258755, 0.32391448966367253, 0.3278548474617947, 0.3319919607578375, 0.3362897823189275, 0.3407099781925829 ], [ 0.25378681640605694, 0.2506744510120244, 0.24816446047979468, 0.24627270414180544, 0.24500307974047947, 0.24434736300423543, 0.2442855313997708, 0.24478653864553077, 0.24580948237973624, 0.24730509089903446, 0.24921744381437216, 0.25148583398175733, 0.254046674271293, 0.2568353545367124, 0.25978796373699337, 0.26284281029224094, 0.26594169877820795, 0.2690309491898016, 0.27206217149634626, 0.2749928288245839, 0.2777866346598774, 0.28041383224380406, 0.2828513989046046, 0.2850832065603052, 0.28710015469273253, 0.28890027617516306, 0.2904888014382562, 0.29187815398889155, 0.2930878411684831, 0.2941441988501556, 0.2950799480057929, 0.29593352521010263, 0.29674815869072696, 0.29757067685234057, 0.2984500572475936, 0.2994357498808226, 0.3005758374872915, 0.3019151236740841, 0.3034932630566328, 0.30534306086587765, 0.3074890687276272, 0.3099465862255307, 0.3127211452771733, 0.31580851041242564, 0.31919517947973125, 0.32285932390048105, 0.3267720722681355, 0.3308990203233759, 0.33520184538620756, 0.33963991242637465 ], [ 0.2629666346735697, 0.2600404072887364, 0.2576689915348224, 0.25586598205039646, 0.2546342716971936, 0.2539659107759474, 0.2538423695400794, 0.2542351798287732, 0.25510691341306385, 0.2564124413327328, 0.25810040844532467, 0.26011484957795855, 0.26239686856829064, 0.2648863009041845, 0.26752328657664776, 0.27024969293812356, 0.27301034668855184, 0.27575405671159015, 0.27843443157071324, 0.2810105134793353, 0.28344726201375575, 0.28571592478995167, 0.28779432925563986, 0.2896671211591821, 0.2913259631401442, 0.29276969326215674, 0.29400442992062054, 0.2950435977593793, 0.29590784002571674, 0.2966247769682254, 0.29722856815617865, 0.2977592397211227, 0.2982617462574814, 0.29878475208769695, 0.29937913795151805, 0.30009626618049107, 0.30098606802628236, 0.30209504746504945, 0.30346432161006354, 0.3051278333512261, 0.30711087218755234, 0.3094290217587155, 0.3120876179958314, 0.3150817545118977, 0.3183968192326771, 0.3220094969632085, 0.3258891343055233, 0.32999934106142137, 0.3342996973237073, 0.3387474458505451 ], [ 0.2718817115419645, 0.2691301263828066, 0.266888896164534, 0.26516963394593235, 0.26397435036798317, 0.26329532654230753, 0.2631153260585626, 0.2634081289261652, 0.26413935619372986, 0.2652675430223148, 0.2667454089713777, 0.268521266647642, 0.27054050431366045, 0.2727470761498359, 0.2750849372817959, 0.2774993701813743, 0.27993816388372833, 0.2823526254655892, 0.2846984214186625, 0.2869362619782677, 0.2890324519352855, 0.29095933591524925, 0.2926956646496519, 0.29422690237567484, 0.29554548566516703, 0.2966510323183151, 0.2975504869557667, 0.2982581788634974, 0.29879575852551704, 0.29919197303350403, 0.29948223809419616, 0.2997079666326642, 0.2999156220118329, 0.30015547850543545, 0.30048009322908603, 0.3009425216512501, 0.30159434104853045, 0.30248357912205, 0.3036526732084344, 0.3051366030954227, 0.306961341988281, 0.3091427525285051, 0.31168601844477206, 0.31458565205659833, 0.3178260614517561, 0.32138260816293074, 0.32522304505357136, 0.3293092003514895, 0.3335987688034134, 0.33804708249112086 ], [ 0.28051498535715075, 0.2779273068087388, 0.27580848438019423, 0.27416838678402133, 0.2730082435341032, 0.2723205279800708, 0.27208912798442697, 0.27228979231931405, 0.27289082975491835, 0.2738540286463134, 0.27513575681367636, 0.27668819441266707, 0.27846064697543843, 0.2804008832275035, 0.2824564440437191, 0.2845758756827594, 0.286709851756344, 0.2888121626259369, 0.29084056574577094, 0.2927575034812822, 0.29453070422039573, 0.2961336871001459, 0.2975461902410067, 0.29875453761421983, 0.2997519516369643, 0.3005388085655352, 0.3011228229946181, 0.3015191374148414, 0.30175028386294167, 0.3018459782100528, 0.3018427046148953, 0.30178304926270005, 0.3017147499145246, 0.30168944206060777, 0.30176110415368945, 0.30198423303554556, 0.3024118142823836, 0.3030931869584419, 0.3040719326440718, 0.30538393813078996, 0.3070557839158486, 0.3091035929870434, 0.3115324366662136, 0.31433634128066285, 0.31749887967528917, 0.320994275238897, 0.3247889023809725, 0.3288430421957642, 0.33311274697260934, 0.33755167977574135 ], [ 0.28885332644655554, 0.28641951405969845, 0.2844158664878298, 0.28285070970458226, 0.28172457783339394, 0.2810301042979442, 0.2807521588995615, 0.28086822283627305, 0.2813489847451754, 0.28215913310685425, 0.28325831327784984, 0.2846022109565593, 0.28614371866811344, 0.28783413900596294, 0.28962437903274907, 0.29146609501688525, 0.2933127552646297, 0.295120599993169, 0.2968494891680618, 0.2984636400541328, 0.2999322642765913, 0.3012301184481142, 0.30233798258439687, 0.30324307692340935, 0.3039394211342817, 0.3044281312286179, 0.30471763981240907, 0.30482381566258593, 0.304769949977797, 0.30458657006939177, 0.30431103786158326, 0.3039868916351452, 0.3036628963332098, 0.3033917816798867, 0.30322866906137813, 0.30322921726477653, 0.30344755184450756, 0.3039340792047769, 0.3047333186890296, 0.30588190721528247, 0.30740693489406157, 0.3093247526035432, 0.31164035376077925, 0.3143473774178735, 0.3174287172611364, 0.3208576618895494, 0.32459944570140264, 0.3286130631921978, 0.33285319418142545, 0.3372721008079148 ], [ 0.2968871030689072, 0.2945977561311378, 0.2927025413880981, 0.2912084157369764, 0.2901152926016118, 0.28941594007114696, 0.28909609082677534, 0.2891347588047159, 0.2895047502402602, 0.29017335014364115, 0.2911031590434278, 0.29225304904421057, 0.2935792034454767, 0.295036201285777, 0.2965781081338391, 0.2981595377524691, 0.2997366557290617, 0.3012681049005928, 0.30271584199827695, 0.3040458838360936, 0.30522896819852524, 0.306241138417934, 0.3070642610856718, 0.30768648353475986, 0.3081026321712833, 0.30831454515764467, 0.3083313242181574, 0.3081694813496225, 0.30785294792692935, 0.3074129071398122, 0.30688740707686957, 0.3063207124574782, 0.3057623594780558, 0.3052658918524939, 0.30488727774753815, 0.3046830367458715, 0.30470814136787583, 0.30501379514267946, 0.30564522283583145, 0.30663963110039005, 0.30802450276388443, 0.3098163708360173, 0.312020178994556, 0.314629278703529, 0.3176260484574105, 0.3209830591857337, 0.32466466189965654, 0.3286288459550874, 0.3328292107098609, 0.3372169071441528 ], [ 0.30460978335037303, 0.3024560934045299, 0.3006630163988418, 0.2992362916298079, 0.2981752784357984, 0.29747286072575563, 0.29711553509950833, 0.2970836796828826, 0.2973519947494572, 0.29789010055207765, 0.298663272343464, 0.2996332874304945, 0.30075935477091953, 0.3019990948382546, 0.3033095369919666, 0.30464810381724844, 0.30597355673394633, 0.30724688394852456, 0.30843211944997423, 0.30949708898063794, 0.31041408460247233, 0.3111604727969368, 0.3117192415628223, 0.3120794896995072, 0.31223685670454865, 0.31219388502637746, 0.3119602984910432, 0.31155317236004326, 0.3109969625684245, 0.3103233552740009, 0.30957089414586936, 0.3087843432642525, 0.3080137496528484, 0.3073131827832457, 0.30673914984468564, 0.3063487150661472, 0.30619738714137945, 0.30633687695471606, 0.3068128623652769, 0.307662920499647, 0.30891479382718007, 0.31058513962385487, 0.31267887294775565, 0.3151891558310527, 0.3180980194018149, 0.3213775426385302, 0.32499146208887847, 0.3288970581857852, 0.3330471577824665, 0.3373921064680037 ], [ 0.3120175703472701, 0.30999128013218946, 0.30829445634462743, 0.3069317542945519, 0.3059020397958631, 0.30519829978578444, 0.3048077130470291, 0.3047118797598596, 0.3048872035425768, 0.3053054147791345, 0.3059342192748129, 0.3067380517561142, 0.3076789098580391, 0.30871724162939473, 0.3098128588270074, 0.3109258497085586, 0.3120174686101314, 0.3130509848079041, 0.31399247917106987, 0.31481158291643535, 0.3154821574252576, 0.31598291684765023, 0.3162979956770632, 0.3164174615300258, 0.31633776920154266, 0.3160621460896147, 0.3156008918582893, 0.31497156743352767, 0.3141990409358523, 0.3133153519620385, 0.3123593519690453, 0.31137607884755886, 0.3104158297040859, 0.30953290892109997, 0.30878404976787427, 0.30822653716847814, 0.30791609499824013, 0.30790463964044995, 0.3082380365300205, 0.3089540207096604, 0.3100804489086278, 0.3116340345364689, 0.31361967777663585, 0.3160304454388641, 0.3188481887421605, 0.3220447234151839, 0.32558344626216, 0.32942123288384934, 0.33351045472783264, 0.3378009673952307 ], [ 0.3191090677412764, 0.3172024352193577, 0.3155963600743153, 0.31429453264011226, 0.3132953810744349, 0.31259198792685117, 0.3121721470869375, 0.3120185610139888, 0.3121091738675758, 0.3124176319637303, 0.31291385882891576, 0.3135647281530175, 0.3143348145068627, 0.31518719927899286, 0.3160843083717598, 0.31698875905881124, 0.31786419601184956, 0.318676100476792, 0.3193925612627401, 0.3199850008029795, 0.32042885327101384, 0.3207041939497777, 0.32079631935335245, 0.32069627584010696, 0.32040133072668964, 0.31991537450754365, 0.3192492361646592, 0.31842088632942006, 0.31745549601202017, 0.31638531272729603, 0.31524931234261666, 0.31409258531740647, 0.3129654218106605, 0.31192207294261065, 0.31101918637130077, 0.3103139433052708, 0.3098619594817857, 0.30971505073903194, 0.30991899872165796, 0.31051147671401363, 0.31152030249022494, 0.3129621695612227, 0.3148419696739206, 0.3171527624855099, 0.31987638220476566, 0.3229846072420181, 0.32644076839469915, 0.33020164114419226, 0.3342194605542802, 0.338443910500058 ], [ 0.32588497397873817, 0.3240907403347859, 0.3225702628437165, 0.3213263737341776, 0.3203571155809837, 0.31965566375257204, 0.31921037255654994, 0.3190049458366921, 0.3190187291317974, 0.31922711687756566, 0.3196020645107903, 0.3201126918583195, 0.32072596115751606, 0.32140741085347463, 0.32212192532478573, 0.3228345211297231, 0.32351113222137495, 0.3241193795666366, 0.32462931420758817, 0.3250141263851787, 0.3252508162567024, 0.3253208234316673, 0.32521061264844475, 0.32491221124302483, 0.32442369064984045, 0.3237495792346546, 0.3229011876688723, 0.321896821355705, 0.3207618478383183, 0.31952858160559533, 0.31823594546146156, 0.31692886808274295, 0.31565738315503233, 0.31447540806824575, 0.313439200625694, 0.3126055206060051, 0.31202955772886276, 0.3117627249575272, 0.31185045039318476, 0.31233012517987563, 0.3132293718805062, 0.3145647829133947, 0.3163412411652304, 0.3185518792217091, 0.32117866870727024, 0.3241935683121784, 0.3275601088980975, 0.3312352639238793, 0.3351714457434604, 0.33931848075324245 ], [ 0.3323478029084375, 0.3306591636201701, 0.32921946317528633, 0.3280307723006247, 0.3270907968443532, 0.3263928060558784, 0.32592567035905506, 0.32567400998119106, 0.3256184526844232, 0.3257359956995346, 0.3260004638037632, 0.3263830524428952, 0.3268529421206125, 0.3273779682797666, 0.32792532987692974, 0.32846231998292186, 0.3289570630195509, 0.3293792454457952, 0.329700829432091, 0.32989674179544226, 0.32994553267646726, 0.32982999965257903, 0.32953777285664826, 0.32906185502580676, 0.32840110722828086, 0.3275606664606551, 0.32655227568906753, 0.3253945007109617, 0.3241128021185365, 0.3227394255588344, 0.3213130705713636, 0.3198782989470516, 0.31848464934307474, 0.31718543727838955, 0.31603623963309435, 0.31509309039870353, 0.3144104481290172, 0.3140390317872889, 0.31402365495151635, 0.3144012117925375, 0.3151989751715201, 0.3164333529776411, 0.3181092127239991, 0.32021983060089, 0.32274745817761025, 0.32566443862419736, 0.3289347550528253, 0.3325158635400251, 0.33636065509962665, 0.3404194022362458 ], [ 0.33850162915945375, 0.33691220743593747, 0.3355487729123952, 0.33441272258270893, 0.33350147156639315, 0.3328083871686843, 0.33232282026344895, 0.3320302357881249, 0.3319124414629637, 0.3319479111142359, 0.3321121962255143, 0.33237841668080365, 0.33271781930257166, 0.33310039097916955, 0.3334955121534807, 0.33387263635014686, 0.3342019822474812, 0.334455226380268, 0.33460618657169994, 0.3346314882222784, 0.3345112071895414, 0.33422948377493156, 0.33377510198699567, 0.33314202659484815, 0.3323298874869396, 0.3313443966212534, 0.3301976776632318, 0.3289084826967305, 0.32750226479810784, 0.32601107065080015, 0.32447321486507263, 0.3229326986045705, 0.3214383409899321, 0.32004260394342027, 0.31880011059284624, 0.31776588404620193, 0.3169933657648236, 0.31653230750466754, 0.3164266625955164, 0.31671262469952066, 0.31741696877986253, 0.31855583542278015, 0.32013406518783166, 0.32214513820906077, 0.3245717138680405, 0.3273867063103044, 0.3305547837654525, 0.3340341500138715, 0.3377784574915689, 0.3417387116259427 ], [ 0.3443518566434298, 0.3428556786965675, 0.3415642892462386, 0.3404784915923473, 0.3395954534772305, 0.3389086468533999, 0.3384078744870105, 0.3380793854755125, 0.33790607944991385, 0.3378677968550316, 0.3379416902951626, 0.33810266960330726, 0.33832391120844113, 0.3385774207394965, 0.33883463680112097, 0.33906706359653277, 0.3392469205529997, 0.3393477981896923, 0.3393453109007895, 0.33921773877296646, 0.3389466516512553, 0.33851750907137457, 0.33792022912067327, 0.3371497176063801, 0.33620634605289884, 0.33509636310776986, 0.33383221914464095, 0.33243277861483345, 0.33092338961587975, 0.3293357760399644, 0.3277077156026213, 0.3260824683132022, 0.32450792592814137, 0.32303546491842694, 0.3217185043236337, 0.3206107954772367, 0.31976450148207425, 0.3192281572448771, 0.31904463087451057, 0.31924922823343127, 0.31986808848390397, 0.32091700550732044, 0.3224007774459883, 0.3243131379414576, 0.32663726539379007, 0.32934681035863345, 0.33240733532804556, 0.3357780322425337, 0.33941357374695696, 0.343265962919189 ], [ 0.3499050086746733, 0.34849648042932707, 0.34727318752663555, 0.34623541274238956, 0.3453801172620377, 0.344700886056514, 0.344187951009269, 0.34382829405853854, 0.343605830622883, 0.34350167150689953, 0.343494459380641, 0.34356077388349787, 0.34367559756048033, 0.3438128333576644, 0.34394586342929934, 0.34404813862855055, 0.34409378826270065, 0.3440582403826951, 0.3439188438407747, 0.34365548431513154, 0.343251187165517, 0.34269270006173475, 0.3419710475839952, 0.3410820482787412, 0.3400267819183821, 0.33881199103231807, 0.33745039636287627, 0.3359609011285157, 0.3343686544127032, 0.3327049404210035, 0.3310068587678103, 0.3293167625693822, 0.3276814272240062, 0.3261509345280595, 0.324777274936037, 0.3236126951752912, 0.32270784760686205, 0.32210982860162074, 0.3218602211330501, 0.32199327615499723, 0.3225343726993856, 0.32349888427511164, 0.3248915485069308, 0.32670639135827223, 0.32892720359911665, 0.331528514264547, 0.3344769623170426, 0.33773293981818864, 0.34125237020338556, 0.34498849252551167 ], [ 0.3551685382866385, 0.3538424232485096, 0.3526835336863325, 0.3516916988317694, 0.35086371165739005, 0.35019327973186254, 0.3496710459177303, 0.34928468128310586, 0.3490190508677877, 0.3488564511366093, 0.3487769161108624, 0.34875858737308646, 0.34877814150598235, 0.34881126718195776, 0.3488331831799302, 0.34881918813745694, 0.34874523284348835, 0.34858850625108095, 0.34832802697342913, 0.3479452325969281, 0.3474245594519631, 0.34675400528436856, 0.34592566636734073, 0.34493623885226193, 0.3437874715348971, 0.3424865537781864, 0.34104641828240695, 0.3394859340802572, 0.3378299610917821, 0.33610923453833763, 0.33436004642951467, 0.3326236933162986, 0.33094566572789297, 0.32937456622459144, 0.32796076041084704, 0.32675478833931865, 0.3258055910591488, 0.3251586357158915, 0.32485404830179876, 0.3249248807505966, 0.3253956436544648, 0.32628122412466454, 0.32758627975405125, 0.3293051573232525, 0.33142233505786434, 0.33391333794251604, 0.33674603471007053, 0.33988219844413003, 0.3432792027705359, 0.34689173144654073 ], [ 0.36015065739229807, 0.3589020554821189, 0.357804115120499, 0.35685627332950187, 0.35605519075635356, 0.3553947078506677, 0.35486586396710695, 0.354456981812891, 0.3541538181549335, 0.35393978012060345, 0.35379620480965185, 0.35370269835212415, 0.35363752909214263, 0.35357806835342853, 0.3535012713387659, 0.3533841901832706, 0.3532045110134428, 0.3529411069870436, 0.3525745995662462, 0.3520879205246977, 0.351466867201224, 0.35070064308686943, 0.34978237479783403, 0.3487095947319436, 0.34748467619692675, 0.34611520460150036, 0.34461426460330374, 0.34300061924490866, 0.34129875358398504, 0.3395387528271859, 0.33775598438607507, 0.3359905556086815, 0.3342865252631908, 0.33269085807248105, 0.33125212820080885, 0.3300189992819771, 0.3290385339445683, 0.32835441211625493, 0.328005160741818, 0.3280225132942233, 0.3284300212102107, 0.3292420282159627, 0.3304630920676702, 0.3320878992931899, 0.3341016726891872, 0.3364810258369614, 0.33919518086971356, 0.3422074404639498, 0.34547679495280675, 0.3489595499118989 ], [ 0.36486018349450666, 0.36368451072585156, 0.36264428887442196, 0.3617386188864044, 0.3609640625171768, 0.36031460364668916, 0.35978166644333903, 0.35935419279903014, 0.35901878014690963, 0.358759879387959, 0.3585600512304633, 0.3584002778466511, 0.3582603254503481, 0.3581191522806015, 0.35795535560860975, 0.35774765080732335, 0.35747537522663353, 0.3571190095405994, 0.35666070926421284, 0.35608483912454686, 0.35537850274367044, 0.35453205948028443, 0.3535396191419191, 0.3523995035271175, 0.3511146613650502, 0.34969302025751825, 0.348147755877387, 0.3464974552558599, 0.3447661479732894, 0.34298317709894754, 0.3411828816115397, 0.3394040646991319, 0.3376892287240576, 0.3360835685216521, 0.3346337304401409, 0.33338636476036515, 0.33238652249081996, 0.33167597149106, 0.3312915278650418, 0.331263512448375, 0.33161444513002336, 0.33235807917128934, 0.3334988533667076, 0.3350318043426575, 0.33694293949995163, 0.3392100295058979, 0.3418037441890223, 0.3446890319947125, 0.34782663311232376, 0.35117461955930995 ], [ 0.3693064027051324, 0.36819937163448785, 0.3672138460063758, 0.3663486419951308, 0.3656002534411054, 0.36496281809659886, 0.364428135358641, 0.36398573788075794, 0.36362301831031757, 0.36332541118109984, 0.36307662873588487, 0.36285894821126957, 0.36265354694928903, 0.36244088067316516, 0.36220109943175754, 0.3619144951074404, 0.36156197398607515, 0.3611255476534996, 0.3605888353174025, 0.3599375704319227, 0.35916010408360505, 0.358247896842689, 0.35719598957694215, 0.3560034419933179, 0.35467372540578523, 0.35321505349935856, 0.3516406318486057, 0.3499688039567092, 0.3482230690544539, 0.346431945434444, 0.34462865343067656, 0.3428505951147071, 0.34113861418549585, 0.3395360300253414, 0.3380874547226565, 0.336837420603614, 0.33582886715043236, 0.3351015577877308, 0.334690515680138, 0.33462457974996185, 0.33492518423770706, 0.3356054551401522, 0.33666969462865515, 0.33811329232965165, 0.33992306454380306, 0.3420779847486421, 0.34455023669315704, 0.3473064993596896, 0.35030936318076905, 0.3535187789287971 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.40631841495633125, 0.10850354201021155, 0.06266618908905407, 0.13277755856902204, 0.13566965397100922, 0.12207390058516551, 0.13431377387187596, 0.1300220652446769, 0.14733743609315936, 0.09592975423456065, 0.1327919480312895, 0.13826872501522303, 0.13838009321973196, 0.1329903707486445, 0.14501954753368532, 0.13599538052590515, 0.14366783490174728, 0.13885218555350543, 0.1415888640696876, 0.04970893813382803, 0.20254851573484908, 0.8202256867662072, 0.53971675503999, 0.41197490971535444, 0.48323400039225817, 0.48209049857632635, 0.3135523075208145, 0.25853742105056615, 0.19345673782844824 ], "xaxis": "x", "y": [ 0.1306498358026147, 0.2552005301020799, 0.28076470721630264, 0.2746411843234637, 0.22261026078235893, 0.16961257464470256, 0.23198495432064256, 0.22674909294137421, 0.1818223914382159, 0.15625931568079454, 0.17329367117182073, 0.5537603888660669, 0.12327044542745802, 0.12129317186133434, 0.031850642915132045, 0.12923317726443795, 0.15929369934866147, 0.1895580979279669, 0.2088963861522143, 0.21337350642276565, 0.22028171323853676, 0.7847294453531504, 0.2395413126796484, 0.0635403199121356, 0.13265602104365826, 0.15104498116011145, 0.21843513819769445, 0.23696584492752143, 0.2504237011950966 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.40631841495633125, 0.10850354201021155, 0.06266618908905407, 0.13277755856902204, 0.13566965397100922, 0.12207390058516551, 0.13431377387187596, 0.1300220652446769, 0.14733743609315936, 0.09592975423456065, 0.1327919480312895, 0.13826872501522303, 0.13838009321973196, 0.1329903707486445, 0.14501954753368532, 0.13599538052590515, 0.14366783490174728, 0.13885218555350543, 0.1415888640696876, 0.04970893813382803, 0.20254851573484908, 0.8202256867662072, 0.53971675503999, 0.41197490971535444, 0.48323400039225817, 0.48209049857632635, 0.3135523075208145, 0.25853742105056615, 0.19345673782844824 ], "xaxis": "x2", "y": [ 0.1306498358026147, 0.2552005301020799, 0.28076470721630264, 0.2746411843234637, 0.22261026078235893, 0.16961257464470256, 0.23198495432064256, 0.22674909294137421, 0.1818223914382159, 0.15625931568079454, 0.17329367117182073, 0.5537603888660669, 0.12327044542745802, 0.12129317186133434, 0.031850642915132045, 0.12923317726443795, 0.15929369934866147, 0.1895580979279669, 0.2088963861522143, 0.21337350642276565, 0.22028171323853676, 0.7847294453531504, 0.2395413126796484, 0.0635403199121356, 0.13265602104365826, 0.15104498116011145, 0.21843513819769445, 0.23696584492752143, 0.2504237011950966 ], "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": [ "