Skip to content

Instantly share code, notes, and snippets.

@quaquel
Created May 8, 2014 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save quaquel/dbcfc706fa3752b32d24 to your computer and use it in GitHub Desktop.
Save quaquel/dbcfc706fa3752b32d24 to your computer and use it in GitHub Desktop.
{
"metadata": {
"name": "",
"signature": "sha256:3a6c1eed93ecc53dcbf14500bbfcafae2d956ca56814006e0d9f7bb2f42a7640"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"import json\n",
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
"\n",
"import mpld3\n",
"from mpld3 import plugins, utils\n",
"\n",
"class VoronoiHighlightLines(plugins.PluginBase):\n",
" \"\"\"A plugin to highlight lines on hover\n",
" \n",
" \n",
" see also http://bl.ocks.org/mbostock/8033015\n",
" \n",
" \"\"\"\n",
"\n",
" JAVASCRIPT = \"\"\"\n",
" mpld3.register_plugin(\"voronoi_highlightlines\", VoronoiHighlightLines);\n",
" VoronoiHighlightLines.prototype = Object.create(mpld3.Plugin.prototype);\n",
" VoronoiHighlightLines.prototype.constructor = VoronoiHighlightLines;\n",
" VoronoiHighlightLines.prototype.requiredProps = [\"line_ids\"];\n",
" VoronoiHighlightLines.prototype.defaultProps = {alpha_bg:0.3, alpha_fg:1.0}\n",
" function VoronoiHighlightLines(fig, props){\n",
" mpld3.Plugin.call(this, fig, props);\n",
" };\n",
"\n",
" VoronoiHighlightLines.prototype.draw = function(){\n",
" var alpha_fg = this.props.alpha_fg;\n",
" var alpha_bg = this.props.alpha_bg; \n",
" \n",
" // get the data for the voronoi mesh\n",
" data = new Array();\n",
" for(var i=0; i<this.props.line_ids.length; i++){\n",
" var line_instance = mpld3.get_element(this.props.line_ids[i], this.fig);\n",
" \n",
" for (j=1; j<line_instance.data.length; j++){\n",
" var obj = {}\n",
" obj.x = line_instance.data[j][line_instance.props.xindex]\n",
" obj.y = line_instance.data[j][line_instance.props.yindex]\n",
" obj.line_instance = line_instance\n",
" obj.line_id = this.props.line_ids[i]\n",
" obj.label_id = i\n",
" obj.fig = this.fig\n",
" data.push(obj)\n",
" }\n",
" }\n",
"\n",
" var ax = mpld3.get_element(this.props.line_ids[0], this.fig).ax\n",
"\n",
" // we hide the transform from data coordinates to svg\n",
" // coordinates in the voronoi\n",
" var transform_x = function(d){return ax.x(d)+ax.position[0]};\n",
" var transform_y = function(d){return ax.y(d)+ax.position[1]};\n",
" \n",
" var voronoi = d3.geom.voronoi()\n",
" .x(function(d) { return transform_x(d.x); })\n",
" .y(function(d) { return transform_y(d.y); }) \n",
" .clipExtent([ax.position, [ax.position[0]+ax.width, ax.position[1]+ax.height]]);\n",
"\n",
" \n",
"\n",
" var voronoiGroup = this.fig.canvas.append(\"svg:g\")\n",
" .attr(\"class\", \"voronoi\");\n",
" \n",
" voronoiGroup.selectAll(\"path\")\n",
" .data(voronoi(d3.nest()\n",
" .key(function(d) { return d.x + \",\" + d.y; })\n",
" .rollup(function(v) { return v[0]; })\n",
" .entries(data)\n",
" .map(function(d) { return d.values; })))\n",
" .enter().append(\"path\")\n",
" .attr(\"d\", function(d) { \n",
" var ret = \"M\" + d.join(\" L\") + \"Z\";\n",
" return ret; })\n",
" .datum(function(d) {return d.point; })\n",
" .on(\"mouseover\", mouseover)\n",
" .on(\"mouseout\", mouseout);\n",
" \n",
" \n",
" function mouseover(d) {\n",
" d3.select(d.line_instance.path[0][0])\n",
" .style(\"stroke-opacity\", alpha_fg); \n",
" }\n",
"\n",
" function mouseout(d) {\n",
" d3.select(d.line_instance.path[0][0])\n",
" .style(\"stroke-opacity\", alpha_bg); \n",
" } \n",
" };\n",
" \"\"\"\n",
"\n",
" def __init__(self, lines, css):\n",
" \n",
" self.css_ = css or \"\"\n",
"\n",
" self.lines = lines\n",
" self.dict_ = {\"type\": \"voronoi_highlightlines\",\n",
" \"line_ids\": [utils.get_id(line) for line in lines],\n",
" \"alpha_bg\": lines[0].get_alpha(),\n",
" \"alpha_fg\": 1.0}\n",
"\n",
"\n",
"# controls the coloring etc. of the voronoi mesh\n",
"css = \"\"\"\n",
".voronoi path \n",
"{\n",
" fill: none;\n",
" pointer-events: all;\n",
" stroke: red;\n",
" stroke-opacity: .1; \n",
"}\n",
"\"\"\"\n",
" \n",
"np.random.seed(100)\n",
"N_paths = 50\n",
"N_steps = 100\n",
"\n",
"x = np.linspace(0, 10, N_steps)\n",
"y = 0.1 * (np.random.random((N_paths, N_steps)) - 0.5)\n",
"y = y.cumsum(1)\n",
"\n",
"fig, ax = plt.subplots()\n",
"lines = ax.plot(x, y.T, color='blue', lw=4, alpha=0.2)\n",
"\n",
"plugins.clear(fig)\n",
"plugins.connect(fig, VoronoiHighlightLines(lines, css))\n",
"\n",
"mpld3.display()\n",
"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"\n",
"\n",
"<style>\n",
"\n",
".voronoi path \n",
"{\n",
" fill: none;\n",
" pointer-events: all;\n",
" stroke: red;\n",
" stroke-opacity: .1; \n",
"}\n",
"\n",
"</style>\n",
"\n",
"<div id=\"fig_el913299767760296751749\"></div>\n",
"<script>\n",
"function mpld3_load_lib(url, callback){\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = callback;\n",
" s.onerror = function(){console.warn(\"failed to load library \" + url);};\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
"}\n",
"\n",
"if(typeof(mpld3) !== \"undefined\" && mpld3._mpld3IsLoaded){\n",
" // already loaded: just create the figure\n",
" !function(mpld3){\n",
" \n",
" mpld3.register_plugin(\"voronoi_highlightlines\", VoronoiHighlightLines);\n",
" VoronoiHighlightLines.prototype = Object.create(mpld3.Plugin.prototype);\n",
" VoronoiHighlightLines.prototype.constructor = VoronoiHighlightLines;\n",
" VoronoiHighlightLines.prototype.requiredProps = [\"line_ids\"];\n",
" VoronoiHighlightLines.prototype.defaultProps = {alpha_bg:0.3, alpha_fg:1.0}\n",
" function VoronoiHighlightLines(fig, props){\n",
" mpld3.Plugin.call(this, fig, props);\n",
" };\n",
"\n",
" VoronoiHighlightLines.prototype.draw = function(){\n",
" var alpha_fg = this.props.alpha_fg;\n",
" var alpha_bg = this.props.alpha_bg; \n",
" \n",
" // get the data for the voronoi mesh\n",
" data = new Array();\n",
" for(var i=0; i<this.props.line_ids.length; i++){\n",
" var line_instance = mpld3.get_element(this.props.line_ids[i], this.fig);\n",
" \n",
" for (j=1; j<line_instance.data.length; j++){\n",
" var obj = {}\n",
" obj.x = line_instance.data[j][line_instance.props.xindex]\n",
" obj.y = line_instance.data[j][line_instance.props.yindex]\n",
" obj.line_instance = line_instance\n",
" obj.line_id = this.props.line_ids[i]\n",
" obj.label_id = i\n",
" obj.fig = this.fig\n",
" data.push(obj)\n",
" }\n",
" }\n",
"\n",
" var ax = mpld3.get_element(this.props.line_ids[0], this.fig).ax\n",
"\n",
" // we hide the transform from data coordinates to svg\n",
" // coordinates in the voronoi\n",
" var transform_x = function(d){return ax.x(d)+ax.position[0]};\n",
" var transform_y = function(d){return ax.y(d)+ax.position[1]};\n",
" \n",
" var voronoi = d3.geom.voronoi()\n",
" .x(function(d) { return transform_x(d.x); })\n",
" .y(function(d) { return transform_y(d.y); }) \n",
" .clipExtent([ax.position, [ax.position[0]+ax.width, ax.position[1]+ax.height]]);\n",
"\n",
" \n",
"\n",
" var voronoiGroup = this.fig.canvas.append(\"svg:g\")\n",
" .attr(\"class\", \"voronoi\");\n",
" \n",
" voronoiGroup.selectAll(\"path\")\n",
" .data(voronoi(d3.nest()\n",
" .key(function(d) { return d.x + \",\" + d.y; })\n",
" .rollup(function(v) { return v[0]; })\n",
" .entries(data)\n",
" .map(function(d) { return d.values; })))\n",
" .enter().append(\"path\")\n",
" .attr(\"d\", function(d) { \n",
" var ret = \"M\" + d.join(\" L\") + \"Z\";\n",
" return ret; })\n",
" .datum(function(d) {return d.point; })\n",
" .on(\"mouseover\", mouseover)\n",
" .on(\"mouseout\", mouseout);\n",
" \n",
" \n",
" function mouseover(d) {\n",
" d3.select(d.line_instance.path[0][0])\n",
" .style(\"stroke-opacity\", alpha_fg); \n",
" }\n",
"\n",
" function mouseout(d) {\n",
" d3.select(d.line_instance.path[0][0])\n",
" .style(\"stroke-opacity\", alpha_bg); \n",
" } \n",
" };\n",
" \n",
" mpld3.draw_figure(\"fig_el913299767760296751749\", {\"axes\": [{\"xlim\": [0.0, 10.0], \"yscale\": \"linear\", \"axesbg\": \"#FFFFFF\", \"texts\": [], \"zoomable\": true, \"images\": [], \"xdomain\": [0.0, 10.0], \"ylim\": [-0.80000000000000004, 0.80000000000000004], \"paths\": [], \"sharey\": [], \"sharex\": [], \"axesbgalpha\": null, \"axes\": [{\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"bottom\", \"nticks\": 6, \"tickvalues\": null}, {\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"left\", \"nticks\": 10, \"tickvalues\": null}], \"lines\": [{\"color\": \"#0000FF\", \"yindex\": 1, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132136114032\"}, {\"color\": \"#0000FF\", \"yindex\": 2, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138851280\"}, {\"color\": \"#0000FF\", \"yindex\": 3, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100224624\"}, {\"color\": \"#0000FF\", \"yindex\": 4, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100222256\"}, {\"color\": \"#0000FF\", \"yindex\": 5, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100222192\"}, {\"color\": \"#0000FF\", \"yindex\": 6, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100221680\"}, {\"color\": \"#0000FF\", \"yindex\": 7, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135813136\"}, {\"color\": \"#0000FF\", \"yindex\": 8, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812688\"}, {\"color\": \"#0000FF\", \"yindex\": 9, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135811600\"}, {\"color\": \"#0000FF\", \"yindex\": 10, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135811760\"}, {\"color\": \"#0000FF\", \"yindex\": 11, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135811184\"}, {\"color\": \"#0000FF\", \"yindex\": 12, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135814416\"}, {\"color\": \"#0000FF\", \"yindex\": 13, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135813744\"}, {\"color\": \"#0000FF\", \"yindex\": 14, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135813392\"}, {\"color\": \"#0000FF\", \"yindex\": 15, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812848\"}, {\"color\": \"#0000FF\", \"yindex\": 16, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812912\"}, {\"color\": \"#0000FF\", \"yindex\": 17, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812144\"}, {\"color\": \"#0000FF\", \"yindex\": 18, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132136089456\"}, {\"color\": \"#0000FF\", \"yindex\": 19, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138733232\"}, {\"color\": \"#0000FF\", \"yindex\": 20, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138731856\"}, {\"color\": \"#0000FF\", \"yindex\": 21, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138733392\"}, {\"color\": \"#0000FF\", \"yindex\": 22, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138733712\"}, {\"color\": \"#0000FF\", \"yindex\": 23, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138732976\"}, {\"color\": \"#0000FF\", \"yindex\": 24, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138766032\"}, {\"color\": \"#0000FF\", \"yindex\": 25, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138764496\"}, {\"color\": \"#0000FF\", \"yindex\": 26, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138764848\"}, {\"color\": \"#0000FF\", \"yindex\": 27, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138764912\"}, {\"color\": \"#0000FF\", \"yindex\": 28, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138767824\"}, {\"color\": \"#0000FF\", \"yindex\": 29, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135913392\"}, {\"color\": \"#0000FF\", \"yindex\": 30, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135910352\"}, {\"color\": \"#0000FF\", \"yindex\": 31, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135910448\"}, {\"color\": \"#0000FF\", \"yindex\": 32, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135767792\"}, {\"color\": \"#0000FF\", \"yindex\": 33, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135769200\"}, {\"color\": \"#0000FF\", \"yindex\": 34, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135767856\"}, {\"color\": \"#0000FF\", \"yindex\": 35, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135768624\"}, {\"color\": \"#0000FF\", \"yindex\": 36, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135769296\"}, {\"color\": \"#0000FF\", \"yindex\": 37, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138926224\"}, {\"color\": \"#0000FF\", \"yindex\": 38, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138925520\"}, {\"color\": \"#0000FF\", \"yindex\": 39, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137464400\"}, {\"color\": \"#0000FF\", \"yindex\": 40, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137464752\"}, {\"color\": \"#0000FF\", \"yindex\": 41, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465104\"}, {\"color\": \"#0000FF\", \"yindex\": 42, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465456\"}, {\"color\": \"#0000FF\", \"yindex\": 43, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465808\"}, {\"color\": \"#0000FF\", \"yindex\": 44, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465520\"}, {\"color\": \"#0000FF\", \"yindex\": 45, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135778992\"}, {\"color\": \"#0000FF\", \"yindex\": 46, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135779344\"}, {\"color\": \"#0000FF\", \"yindex\": 47, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135779696\"}, {\"color\": \"#0000FF\", \"yindex\": 48, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135780048\"}, {\"color\": \"#0000FF\", \"yindex\": 49, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135780400\"}, {\"color\": \"#0000FF\", \"yindex\": 50, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135780752\"}], \"markers\": [], \"id\": \"el913299769072\", \"ydomain\": [-0.80000000000000004, 0.80000000000000004], \"collections\": [], \"xscale\": \"linear\", \"bbox\": [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], \"height\": 640.0, \"width\": 960.0, \"plugins\": [{\"line_ids\": [\"el9132136114032\", \"el9132138851280\", \"el9132100224624\", \"el9132100222256\", \"el9132100222192\", \"el9132100221680\", \"el9132135813136\", \"el9132135812688\", \"el9132135811600\", \"el9132135811760\", \"el9132135811184\", \"el9132135814416\", \"el9132135813744\", \"el9132135813392\", \"el9132135812848\", \"el9132135812912\", \"el9132135812144\", \"el9132136089456\", \"el9132138733232\", \"el9132138731856\", \"el9132138733392\", \"el9132138733712\", \"el9132138732976\", \"el9132138766032\", \"el9132138764496\", \"el9132138764848\", \"el9132138764912\", \"el9132138767824\", \"el9132135913392\", \"el9132135910352\", \"el9132135910448\", \"el9132135767792\", \"el9132135769200\", \"el9132135767856\", \"el9132135768624\", \"el9132135769296\", \"el9132138926224\", \"el9132138925520\", \"el9132137464400\", \"el9132137464752\", \"el9132137465104\", \"el9132137465456\", \"el9132137465808\", \"el9132137465520\", \"el9132135778992\", \"el9132135779344\", \"el9132135779696\", \"el9132135780048\", \"el9132135780400\", \"el9132135780752\"], \"alpha_fg\": 1.0, \"type\": \"voronoi_highlightlines\", \"alpha_bg\": 0.2}], \"data\": {\"data01\": [[0.0, 0.0043404941790965434, 0.027828921544984855, -0.008290926441633917, -0.049006630632901706, -0.043933030408504284, 0.005252942343432332, -0.009015352818560463, -0.04113745858660054, 0.04588430789564042, 0.015242730280798778, -0.04722677224742309, 0.023260350424478684, -0.04568725387245053, -0.038179522814420046, -0.004415162505038883, -0.03934898842933078, 0.03869058758476131, -0.020408281049644962, -0.009603506485856306, 0.02131783359024162, -0.02405564673706423, -0.01646325534015226, 0.002915278076949557, -0.047814695632708404, -0.02794329431857495, -0.025047356113455977, 0.04837943923230349, -0.011399490851676887, 0.027876990046763018, -0.04678712242548856, -0.04232645449456236, 0.011557326533200518, -0.003977830471167754, 0.003997563054866949, -0.01664553087254268, -0.04625394826240962, -0.00879922313197754, 0.011847475589182822, 0.011168022886700268, -0.04241505712537178, 0.026961995556273256, -0.0023014123728484215, -0.014994927064900044, 0.049442558935641784, 0.0010477293137965194, -0.0034864358970876697, -0.04534062478247452, 0.014341034162007339, -0.029696680148066514, 0.04303633899561088], [0.10101010101010101, -0.017822567311523842, 0.05578876140605982, 0.011268176387573471, -0.020030062699301042, 0.0010506635064802122, -0.028634347951139585, -0.03831129393505137, 0.007187579105054846, 0.08699070750532596, 0.022563818000236116, -0.05900304583637581, 0.009890162427520645, -0.0030023651360576373, -0.0067722964701888225, -0.011386132092330793, -0.048259022915289565, -0.005176264132948291, 0.02115688294994126, -0.0005931075302266671, 0.06289956366227234, -0.0717553287161456, 0.01003476836185484, 0.002184457620597713, -0.06562911123033698, -0.04483314550140742, -0.0483204814501381, 0.024777877797942195, -0.037714297900952265, 0.040977145294841345, -0.08839190662921739, -0.035435205457780644, -0.034008312054043116, 0.0374091996794847, 0.01701379000154457, -0.062141139312062985, -0.022358121911026742, 0.03985078011190124, 0.014809102461281433, 0.024998234382152207, -0.016700966756150216, -0.018678319253858367, 0.008090692657797095, -0.011602962488267799, 0.03461048046330931, -0.04498449956262971, 0.02796182708063677, -0.07109856449126867, -0.004062951429550753, -0.05684867298761536, 0.03115915909591056], [0.20202020202020202, -0.025370808236610535, 0.0668215767269992, 0.0037529001800566293, -0.04249874081981121, 0.011916568020462296, -0.021779451489311288, 0.007290972757195549, 0.005111877292238547, 0.04895818588974209, -0.00892790633954419, -0.01367795463263461, -0.032662963087867584, -0.010034699259029289, -0.022716500657321396, -0.02081932054650251, -0.06455543409255626, -0.018454151179551702, 0.011843712002423436, -0.0006832442511129362, 0.09343215112558531, -0.056314586689947675, -0.02389685711173448, -0.02307885882405766, -0.1152591295669996, -0.06279547455252442, -0.036215538063392685, 0.04854456879684008, -0.06399878694479766, 0.007818299158128462, -0.07517733439045704, -0.04542339019290293, -0.009421622600588736, -0.006336773219680819, 0.031495493417033615, -0.04837456400228411, -0.023895541463635206, 0.046884938610794236, 0.023474782539263318, -0.0019078058730204982, -0.03370448383489309, -0.04952692766925984, -0.027191175248125286, -0.02772310104591823, 0.032679830960215414, -0.06747163961739452, 0.001030548788459016, -0.09492129929490976, -0.028469190655946643, -0.04866796820620435, 0.033603238655798916], [0.30303030303030304, 0.009106804995379834, 0.047721611579439424, 0.0395643227851996, -0.02072474036547757, 0.029116836399676653, -0.023208464678633557, -0.0021079095261689468, 0.0033285793409595964, 0.010405045385693083, 0.0024601805470800472, -0.041458101909862294, -0.06314286920449805, 0.003063912577242301, 0.007218741539066851, 0.023816727736642476, -0.10457172805524678, 0.016260799325888288, 0.048133850806228666, 0.015299635819650971, 0.06584984244241275, -0.009392953194577051, 0.01910866903321416, -0.028181110216343865, -0.15078398657833178, -0.07283368984475394, -0.07120511679425376, 0.019681396991548982, -0.07304067460650318, 0.011282111997874513, -0.055670348613366304, -0.06453360295585167, 0.029870257480342083, 0.0434016239848998, 0.05567685613644189, -0.07803803407688366, -0.05315769374987165, 0.017801744683282227, -0.0056657572024316205, -0.041881352673658265, -0.004495016257906589, -0.08740829976532263, -0.00859112294857984, -0.04098453120471303, 0.0729040534246214, -0.06254042149646075, -0.02445980360806457, -0.0528161026716152, 0.014824709334231946, -0.03324754894172366, 0.02314496390485957], [0.40404040404040403, -0.04042130938552291, 0.06749510233073502, 0.0742575707461415, -0.028589148189821993, 0.025394188769133214, -0.06045651032726669, 0.019580103564292156, 0.005983120945320612, 0.060101546018520045, -0.03984479816060405, -0.06094548989245717, -0.015647433314165973, -0.03736370926749183, 0.05209152383705187, -0.008941042827291825, -0.062262570328595696, 0.015870196071478007, 0.0022198187609531114, 0.05546863926364744, 0.10088999250906086, 0.010502201026385969, -0.008153691667858527, -0.044891782491375876, -0.11347232034357815, -0.0860973638353595, -0.08210372122806389, 0.025696777295989136, -0.0918262731377514, 0.008625151516392706, -0.06984721027313341, -0.021693101362038572, 0.012392198340798858, 0.026511753472067804, 0.009704073236796916, -0.12033812071077318, -0.026912464409203717, -0.026409050982054042, -0.021935858100778072, -0.03611504484861838, 0.021161738295667757, -0.061323994638567074, 0.04068997785521578, 0.007758337089384303, 0.028765169000617, -0.03630041033032473, -0.06274763541384067, -0.07247685012708076, -0.01938763772069048, 0.009996747783549212, 0.03773441357982164], [0.5050505050505051, -0.07826439730721149, 0.10345693190364154, 0.031277482137010384, -0.06425556097292204, 0.04582149829262994, -0.05608729340426295, 0.036813244408289605, 0.0502905536277322, 0.0141023786143308, -0.023035346459540012, -0.029013509700661008, -0.015227305498253421, -0.056641453695038625, 0.09153019023272191, -0.0291697537570394, -0.029244375755145595, -0.0277745627187199, -0.03965449962031607, 0.034680074557436026, 0.10368843720033157, -0.03629236344797042, 0.012010948689167206, -0.07884467376908957, -0.11548675086753221, -0.04130123762047884, -0.06646415258858479, 0.03458105271186505, -0.06408835908586294, 0.05795552741783975, -0.05435739033289221, -0.048195332843006644, 0.030260603687302583, 0.046946393619688304, 0.03159864305642287, -0.09884116271212769, 0.009327793702041343, -0.006790415759019865, 0.013690892966892878, 0.013708919598213909, 0.01473718999082976, -0.04894021669517754, 0.0608939566603905, 0.043415761371319285, 0.07372293884197244, -0.06618297561262701, -0.07795498212663071, -0.09107151986482478, -0.027146888144698258, -0.001865049683945328, 0.010339081321902872], [0.6060606060606061, -0.06118948883453362, 0.1159893076793223, 0.011452723485425233, -0.0950033929477241, 0.013928212409240665, -0.08603823253099718, 0.07102695466366207, 0.04936093879943197, 0.050058753066198745, -0.04988736998779732, -0.021166528109877954, 0.033336385735775666, -0.09188897740463955, 0.07164679234244527, -0.0715019879756858, -0.023865942488742825, -0.06848728242916183, -0.06769868517117957, 0.049637149758739896, 0.06032992387457695, -0.08596284239909682, 0.06185939105601697, -0.0942208987746679, -0.16378415417702102, -0.0655361398675467, -0.021903314289291605, -0.0053671901833961325, -0.04936683819933477, 0.036021921188022756, -0.08692295076805068, -0.008008443815443286, 0.06884851628127392, 0.017506986706504038, 0.016870214299523498, -0.1381132820281501, -0.010077004449924456, -0.00487839306918856, 0.033604172861691095, 0.023659340255764306, 0.0004851442374971711, -0.05265473245961266, 0.031580111202357715, 0.041318309929342316, 0.053737491459313, -0.03521645116405185, -0.059864557257958834, -0.1362683705589297, -0.00934372540799551, 0.01650978322852377, 0.034297457685782906], [0.7070707070707071, -0.028604213324028856, 0.16423009064027727, 0.05941509158844225, -0.11362186961596057, 0.028686430142473233, -0.06902214653101693, 0.11510099389340128, 0.0023739784154888713, 0.046609256438568, -0.07751352280335319, -0.06840480965954601, 0.016778643898156167, -0.10555714556988861, 0.09774240185377239, -0.05786485796191988, 0.024082202998180355, -0.04925303033756061, -0.09597987653770407, 0.0010540321890847512, 0.02467967485866307, -0.12373179840282293, 0.03968903166779236, -0.12131938819249055, -0.134801169360345, -0.035951544028091406, -0.02227999437305041, -0.028719145645102154, -0.03987152197142358, 0.01981632526089653, -0.0738796185665226, 0.026382404289520496, 0.10796685599219864, 0.04810633449053493, -0.026859652563524246, -0.17201056532072354, -0.043396420726951115, 0.01770445862600619, 0.020718726031535194, 0.03312278716231801, 0.036691593722985555, -0.029840078206771245, 0.047493817220684256, 0.016330705473700417, 0.08378708727282339, -0.0160166890577298, -0.10058588096928717, -0.15338485428948112, 0.03574142805753474, 0.025086313876284908, 0.03320418027740206], [0.8080808080808081, -0.06493355435553355, 0.2118801033418628, 0.012977791243745727, -0.08310485287923086, 0.035497303627022816, -0.06321092482739837, 0.1120811045634972, 0.0459210126975595, 0.025509089177487152, -0.1195819584600443, -0.022966032484455237, 0.053473006803198164, -0.119248823619674, 0.10652588215033551, -0.08432849604188562, 0.056403717732496673, -0.04484879468507029, -0.09853667268740743, 0.012891889035786051, 0.0745475134605702, -0.10074256886855536, 0.06497001159495827, -0.14965647135001972, -0.15076671962088092, -0.008698188867863717, 0.010971212389953248, -0.0025976292059765177, -0.03376179590936595, -0.020737330407343435, -0.047121403791846525, 0.03917752418292914, 0.11329572977797817, 0.017822274715780496, -0.05206318231239112, -0.20994527514298755, -0.05896043497718639, 0.03603836718289691, 0.03002463608688076, -0.0161062453724609, 0.08654538047400201, 0.014138197801473358, 0.06574298985753776, 0.0633481412964258, 0.09583624622409134, -0.06535531998704458, -0.07101498713682622, -0.15673132744447388, 0.05368587171272757, 0.0003136689794885142, -0.010098591806081109], [0.9090909090909091, -0.05742422141280855, 0.1785495164617486, 0.012217055943603937, -0.13184226984348285, 0.08091113508047233, -0.08997309307823756, 0.07285275695236836, 0.07064901278582356, 0.0488354849575382, -0.11667664439390775, -0.04175215002212923, 0.031675926968666696, -0.1419339671560064, 0.11456805332169702, -0.06523532982755806, 0.054191697989526236, -0.03613870649222619, -0.092525607986835, 0.05450845563067388, 0.10577739571504534, -0.0763778604711675, 0.03395078646962753, -0.15404335743624134, -0.19997168022731346, -0.027607624578909494, 0.058078043747533364, -0.04402026575834601, -0.010203948115548915, 0.023966942280653485, -0.028106183053003816, 0.07498491806162576, 0.09563181219852691, -0.022150678072574093, -0.04088969551038143, -0.2488777691553815, -0.07285575456335651, 0.06050098179912384, 0.02674761851448579, -0.06546737912094423, 0.06694970762739468, -0.009099167474163922, 0.09930244746023226, 0.04352837906988584, 0.06143387182856306, -0.019331270421701352, -0.025414250482562475, -0.20140883932422593, 0.02281207815309138, -0.01823367338105567, 0.015575195053302866], [1.0101010101010102, -0.018292025981582145, 0.13086733010958895, 0.05745474124495857, -0.17693167257372727, 0.1105801589686085, -0.08841424451725521, 0.07952129682650204, 0.09369016199710462, 0.04605472992091571, -0.13745592189921596, -0.07334486215436138, 0.030530291089918178, -0.15150051531928962, 0.07027896593113073, -0.04508197004045093, 0.015787363028293547, -0.04162958129062607, -0.13452078237168186, 0.0992905056818863, 0.06493266782494128, -0.1076276076135691, 0.006996871652767314, -0.15886936831034598, -0.17535252398123802, -0.06950787894737459, 0.03137016987878111, -0.04742881553957868, -0.005692383196079491, 0.05972334372602433, 0.002023728994003708, 0.0711449845231538, 0.06581183070718302, -0.014164530463071034, -0.04374879737998851, -0.2975830670834939, -0.02838650742771895, 0.09311025399270433, 0.04944619423286249, -0.06564550838036042, 0.057357556347319164, -0.04852049629715746, 0.14134549641831815, 0.000990840582995832, 0.09197140875977164, 0.009789016998579217, 0.003813723743694219, -0.1740502992029162, 0.06388115332506589, 0.02463481019137787, 0.04861925313753418], [1.1111111111111112, -0.047371813769863186, 0.09694178496029712, 0.08851211709790568, -0.17033163407521792, 0.1191111982398035, -0.10691504717538722, 0.1274989998167455, 0.05421827744289556, 0.032658108123374545, -0.1339814888719003, -0.12169789948769909, 0.03614749901309876, -0.169056417853599, 0.07198410106291497, -0.047541767080099336, 0.007575127011819973, -0.009674301791391046, -0.09202677864186898, 0.11219953306393095, 0.053279863463117236, -0.05831034978489547, 0.0174785378050264, -0.2009091324568602, -0.14140796969739947, -0.05733976240766925, 0.04896713650712795, -0.04477944469501641, -0.0018564240175304374, 0.09636361667419935, -0.030781964589157607, 0.09026777261476902, 0.07264118309823607, 0.01112013494585029, -0.06731274286107486, -0.3340713913706565, -0.054008995722663114, 0.13684476922777233, 0.06797421443809197, -0.01770199294733346, 0.034114304523598246, -0.015307488386612285, 0.1549242487858933, 0.05027548448047876, 0.09406798821887644, 0.04996442772782736, -0.011760299232903506, -0.22404857912328724, 0.04196201083175713, -0.013362396840796296, 0.049084589050919024], [1.2121212121212122, -0.07883899181485568, 0.13929146748620586, 0.06794516122754281, -0.15165056445977831, 0.11464669494712387, -0.07225579228324686, 0.12089046996976456, 0.08077853374549515, -0.00996758328898617, -0.1343175421186189, -0.11929180247212241, 0.06736555714913786, -0.14459700434609993, 0.04326595844164218, -0.028607660231773118, -0.007232060159066177, -0.027302494107546448, -0.11120807789194458, 0.1222178064857127, 0.10105222733498456, -0.012889064457344009, -0.003436875283694206, -0.16940793195697104, -0.11221471619014883, -0.01686351117125174, 0.012964347380730892, -0.0883328431786039, -0.042787318199503974, 0.08987639972073076, -0.03041162732695707, 0.04205124327612529, 0.0677798578256902, -0.02396022054563951, -0.0471203066368063, -0.3361887400978108, -0.054020378537584006, 0.13109884137252129, 0.0485397840057494, -0.05315973678786638, 0.05722160697099606, -0.05341511173100093, 0.10801182900660986, 0.012480802658527766, 0.09947917947081335, 0.08711585778035985, 0.016722480497613643, -0.24091668648516157, 0.04438544084332181, 0.017509155509588686, 0.002244916244736911], [1.3131313131313131, -0.11800130276843017, 0.18464645247415926, 0.07756851307937693, -0.12896947395460764, 0.1384918480002733, -0.07751816425550655, 0.1526939136180624, 0.10156643820635458, 0.022152946944363705, -0.14044616742948143, -0.15259612581595008, 0.10265275218664503, -0.13587699220544297, 0.08957017504658893, -0.07013250620115623, -0.04440380243239865, -0.024265955291625927, -0.07948939418779974, 0.13137053920057096, 0.10847746165349079, -0.003309726769470273, 0.04165562601162477, -0.13091905335005685, -0.1525534974624932, -0.03824570510474527, -0.005742838564150653, -0.07481431388675984, -0.007656496559705801, 0.13952495139216015, 0.014486416286038944, 0.0686673754997256, 0.019306780000765668, 0.016819603565405433, -0.08964948505302725, -0.375340318903204, -0.027247383909820358, 0.1258287438690868, 0.09569010294985905, -0.02567837169557475, 0.02851324376850451, -0.048410027496843394, 0.1346936141805913, 0.044449083507953645, 0.08595270610646, 0.06276821099207497, -0.008258880451499168, -0.28593600985676176, 0.050052831599122195, 0.05507244402141945, -0.04090584419419108], [1.4141414141414141, -0.14603155350593094, 0.1557442943460039, 0.07068629830934992, -0.13100009782443994, 0.1697154757965521, -0.11750964181603615, 0.14641887329047507, 0.1438202525779682, 0.020954638423295778, -0.1494794532511134, -0.12130192113304457, 0.1019857832571366, -0.08719608461431465, 0.08274249822458926, -0.10688628403995587, -0.01573666531770511, -0.05674677681911061, -0.11307517147561917, 0.10023946707186214, 0.07742354749624919, 0.037517815667487416, 0.08831919288956587, -0.11756420485864484, -0.17603870834627536, -0.06719115923538478, 0.021682574015838108, -0.06715489305587377, 0.016293512563172845, 0.12898244958834626, 0.05888376339041684, 0.07127889301797985, -0.028888120057515954, 0.033523278434063136, -0.1185737957421748, -0.36734800052227423, 0.003966909854228939, 0.1519370513713133, 0.1379135361914858, -0.037786937433482944, 0.02765999292716534, -0.03333910787245288, 0.14057572361581133, 0.07262561681485781, 0.13164169285712357, 0.09769462702558358, 0.0009657877574359153, -0.3298188496560976, 0.06364312628484545, 0.08302503694989567, -0.021104793070385295], [1.5151515151515151, -0.09816917503519398, 0.14179681942746472, 0.07992604860824855, -0.1442344256465871, 0.2124445931517671, -0.07735043327662512, 0.1774723032179951, 0.14472738882302333, 0.04666084490985707, -0.1734183517666648, -0.17101854087629537, 0.14791498015604201, -0.11821382826515503, 0.09379383068129823, -0.14970404164345258, 0.012109035560499887, -0.03528460698213613, -0.13266442649849036, 0.14268342000345174, 0.02842867928564205, 0.058762454954366106, 0.07516420994261007, -0.13992273145962314, -0.18146596593232237, -0.06920969531797844, 0.06428872157233324, -0.10746670633949187, -0.004280467998296698, 0.17827670991681469, 0.02215549122475685, 0.02423665572814055, 0.020971509418871687, -0.010132233378194418, -0.07772101587273994, -0.4130015713785243, 0.0020565480340073543, 0.12124189998493834, 0.17193712429041527, -0.07051939418513024, -0.0029582207791746667, -0.028086617558330508, 0.10084935255519029, 0.05724098128757821, 0.14291216341596308, 0.10369058271468269, 0.014331875835835768, -0.305260281434359, 0.014839066043393107, 0.06029555628820635, -0.05132025940047752], [1.6161616161616161, -0.06700086012626166, 0.14673434559023193, 0.11930125908026916, -0.11023741572641195, 0.24508215382391832, -0.04174160842145859, 0.15043314979885353, 0.1659383856613187, 0.03376865217078778, -0.21448086798885418, -0.2110947789251333, 0.11379142698552605, -0.13539179712647084, 0.10050697794166193, -0.1101437399590246, -0.01825660105107295, -0.02990918898041136, -0.08780615387768906, 0.13711100239559762, 0.035187163156308605, 0.0869219158775784, 0.06561258269088757, -0.09174947610252415, -0.1529279747662014, -0.07906323066173059, 0.020006288527928996, -0.10563329644572814, -0.03512305668965463, 0.1897046667783844, 0.04880302219373962, 0.004392770655154428, 0.01641261288780676, 0.009277789310741653, -0.06340150023677879, -0.4096785927942019, -0.0009869363784890126, 0.11299634101946293, 0.19597819158096053, -0.06380368283751695, -0.001367469805269647, 0.018960782920917865, 0.05259527942297684, 0.10156863529163393, 0.11592573557082786, 0.08604993454987697, 0.01053645181384873, -0.34240540892817145, 0.04598098459798629, 0.015023220375558012, -0.08946398655121202], [1.7171717171717171, -0.09980675885300225, 0.12391743050792914, 0.12470337805743978, -0.11482106048131141, 0.19807781359042695, -0.06310862103027726, 0.14153096431573264, 0.20304321781439594, 0.010719134647051775, -0.18381220478348037, -0.2187576986332263, 0.0673868648158984, -0.1185663502689065, 0.09750115993318635, -0.08445451799294687, -0.05343995247777815, -0.07187743795989507, -0.12676068409786737, 0.1025075426398897, 0.08239826713404025, 0.07212875575579487, 0.08732726538191432, -0.09056692484548907, -0.14492346385656413, -0.12769144951026198, 0.046493808319841505, -0.05587376937665858, -0.08335079532946987, 0.2114267670555772, 0.031239394834790282, 0.04812326328327205, 0.05642702246717865, 0.0021533310387308498, -0.04087463444191235, -0.3889567390866209, -0.02733304958068371, 0.12796261535880504, 0.1865590456024192, -0.017362655391344906, 0.0430334134392051, 0.05106100704570757, 0.027134122882121952, 0.14062169182397588, 0.16054725484902674, 0.081067069233681, 0.006626942041579637, -0.31339431107271093, 0.0022729826382756127, -0.008857771280042726, -0.12634454443707777], [1.8181818181818181, -0.06818428398041826, 0.11997759261541416, 0.12399002879196716, -0.13268447660309154, 0.22535809577131782, -0.08720714398492062, 0.16462607829754533, 0.1961093993101151, 0.03417859818972192, -0.2181546732102381, -0.26817678869745054, 0.05803488911824167, -0.11809020746565864, 0.11130596690996819, -0.08544601392448847, -0.07911064095392503, -0.10956076907221327, -0.14014595917789302, 0.05415057641393075, 0.08402644958935017, 0.046129376993576034, 0.09358780871933646, -0.09213627936237538, -0.18882440176268256, -0.1240493614364375, 0.07839215705780306, -0.09502129874550336, -0.10993093471779564, 0.18784802732422282, 0.0505233485038019, 0.0054168548097204075, 0.087908230483972, 0.010891961168416515, -0.014836273906101479, -0.3874410999397031, -0.02593353089341166, 0.08862301998897665, 0.21411292555328057, -0.010145586792680416, 0.04168370122418784, 0.0701823440003767, 0.044726424199287226, 0.13945435672028353, 0.1296781770673138, 0.06442578300928375, -0.028151532897767378, -0.32202939623796706, -0.01160770581523588, -0.04709054028457427, -0.12066455053542963], [1.9191919191919191, -0.09077690927624835, 0.13959374909775268, 0.10591707451091728, -0.1734124898859874, 0.22753583513294984, -0.13057000662910076, 0.17835751892135251, 0.19482226842807784, 0.06883505081959629, -0.17676205868445508, -0.25378394545973154, 0.042316741147245096, -0.13603042505614327, 0.07060556737986284, -0.1117154862978345, -0.1272198651920104, -0.1212586581433636, -0.11845067083426933, 0.059116265595973994, 0.07847832839368613, 0.07858141488273462, 0.11840072912249514, -0.049281065636394665, -0.16999061880773358, -0.16016792671889413, 0.10765399198497852, -0.10094472141866696, -0.07538641494492529, 0.1650423656608949, 0.03279079209400203, 0.04840507362484942, 0.04861008374257494, -0.0311783113445631, 0.018112716631592415, -0.40485729867796627, -0.021651620034311515, 0.11562000595151548, 0.2620928296558518, -0.020280632666710298, 0.0870791229445354, 0.11730125266358352, 0.08132524359802606, 0.09101464829186726, 0.09861631095263027, 0.014778242348345516, -0.0395323585594575, -0.2861193837794792, 0.035018746124020075, -0.021217543422060236, -0.13017012292927363], [2.0202020202020203, -0.09760649090993617, 0.1396293387652392, 0.08225365281598968, -0.21736869667242883, 0.26607456835707244, -0.1488068394663124, 0.2052717870034896, 0.15704544844658683, 0.09615102208924141, -0.18209552169228244, -0.2511949883143925, 0.01989857204189925, -0.12694050005284493, 0.035172149970631374, -0.14026251008477042, -0.09834750822214715, -0.1555044778041489, -0.11390995424656236, 0.09453309838102086, 0.05834267902700328, 0.05694241162651089, 0.08905404646161899, -0.06559162313775702, -0.20962419483720338, -0.1592102217778285, 0.10683391204715302, -0.11171090146097769, -0.08471750420531357, 0.1616705965949449, -0.0021167032626764407, 0.03085535170103377, 0.09081286989225998, -0.010954655823526734, -0.02419514843876269, -0.4535166280907465, -0.06364146949490625, 0.13727028041266456, 0.2839378439538514, -0.006867913058910836, 0.052485523371448906, 0.12258290891255404, 0.09509255104800773, 0.09311034356932145, 0.11979375234317124, 0.022914188641295484, -0.0013322381087842727, -0.305854798853311, 0.04945463721612262, -0.068273625665664, -0.1617270921556856], [2.121212121212121, -0.053603508947698705, 0.1612364378216728, 0.08648171416956926, -0.25827357995234135, 0.26193073506543785, -0.19362253994198106, 0.2508941912280793, 0.12604705681030326, 0.055877334086324254, -0.18715543559543157, -0.27628609989359304, 0.02716639879593412, -0.17243913569740948, 0.007862605298298176, -0.18401177915181582, -0.08915743468395128, -0.1278655281117129, -0.16353578058849255, 0.0806209803151528, 0.09146988877293494, 0.04324067310004319, 0.061860102784768015, -0.023139339566832694, -0.23188120664243395, -0.18135403350384488, 0.14091837413090555, -0.10228311616779387, -0.03849158042976522, 0.20845038746476283, 0.010684430560983088, 0.07327031084905089, 0.08268488969196318, 0.019228322430602414, -0.0059163871294916695, -0.42076693063377973, -0.0550459770627397, 0.11189919771425955, 0.28951004612205133, 0.010153737833698018, 0.023887246116070415, 0.11060433133217557, 0.048277070579695575, 0.0915065853973417, 0.14775993620496147, 0.06396813120496987, 0.034092788615859446, -0.35095204971969224, 0.08113722600479717, -0.058662808172224294, -0.2005114970037783], [2.2222222222222223, -0.021838571070025965, 0.1638320314446507, 0.044708166562771656, -0.24000293430951064, 0.2660029926813999, -0.14920370815879086, 0.23849485741269166, 0.136021109851742, 0.03716581462674633, -0.22897599829638024, -0.2991665944249475, 0.044109308390988214, -0.14178569861129986, -0.03370828297299165, -0.1747339837530801, -0.06195799251535275, -0.17523246265807688, -0.18345766030294935, 0.1301988732084264, 0.06998983524415267, 0.020154165882791626, 0.03385451418170578, -0.013982839481120578, -0.2762372571700198, -0.19177247868524733, 0.17069716971515717, -0.06535112997580719, -0.0669579402029811, 0.20596011208997914, 0.053807602295734565, 0.04573075541380962, 0.08887385214286854, -0.02916905676513517, -0.006850634711464916, -0.4023892429143018, -0.045241785119406124, 0.1373001852311633, 0.3131261532268002, 0.02436315829533875, 0.06890505534943607, 0.12790615972616667, 0.08828170717436576, 0.07274390656547365, 0.1480517969467906, 0.015591774357331965, 0.07902436025087287, -0.3855793593855984, 0.10772827520404962, -0.03850421010510268, -0.2248924715214633], [2.323232323232323, -0.038227376057936094, 0.11397193375655507, 0.05827183754531151, -0.22192935758644688, 0.30677949250794123, -0.12748197795446878, 0.27806499959239805, 0.11582887271715714, -0.007404448248448929, -0.2093266566778264, -0.3432859604228488, 0.08454103158841676, -0.12095126170587099, -0.0001247103173558778, -0.21776914574857936, -0.10231158794598537, -0.1976473411084984, -0.22493573240558068, 0.08993025911012015, 0.10982340668075227, -0.027237383595819717, 0.00028527840573579905, 0.01123804721178098, -0.22945180571697854, -0.2075987915421703, 0.1905730621227223, -0.10265792274990482, -0.02902371438026137, 0.2474860596430006, 0.0364494519338396, 0.08777040745871278, 0.06867859475744728, -0.05634509301810832, 0.0005746849100208883, -0.43350851596291984, -0.07799623071732979, 0.142738897640014, 0.26936718743494836, 0.06634607941354312, 0.08789028757184135, 0.10888384428672623, 0.07661339980811244, 0.09666503187193881, 0.1690730227350044, -0.011585811849331253, 0.04437036658233835, -0.41224725290570463, 0.11105026266066037, -0.045628804071790215, -0.22413962218933703], [2.4242424242424243, -0.07068633068370242, 0.10344196242553862, 0.0879123600639323, -0.24761194099770434, 0.3124104965356286, -0.12211605793832318, 0.24891304915815543, 0.08409720949479735, 0.04223733820125823, -0.23866944130281248, -0.2972669822314491, 0.12093656058829519, -0.13056062321182824, 0.03435777329786985, -0.17553072394694463, -0.12907355114153635, -0.21107950523228902, -0.27442861238106836, 0.13181303562144414, 0.13269747242106955, -0.025434331374397254, -0.013496141709708056, 0.004988352309692946, -0.21697917807161304, -0.23816619527498, 0.14159445961368555, -0.0880881964076806, -0.0045781864135407, 0.2849047866530995, 0.06707580049994954, 0.048934843580182505, 0.029266729825990136, -0.019578462983512755, 0.015054014171800571, -0.38518731625159386, -0.09696566003672655, 0.1825717709672895, 0.22159275915823515, 0.03125369736006322, 0.12124332304264272, 0.13147882515332732, 0.1040205461156958, 0.05218758082621635, 0.21211772641502963, -0.055317684759686916, -0.001284762426637033, -0.3940380721725382, 0.08363400605158086, -0.09105118042890553, -0.2111576253304674], [2.525252525252525, -0.0834031260547101, 0.10265865941565361, 0.1333871106070132, -0.23356579678210135, 0.2811219687646932, -0.13614158095033757, 0.20523269315646359, 0.08439997852515473, 0.010007211636487032, -0.27909913128473773, -0.3311757887548597, 0.1455624441057669, -0.11171876049623682, 0.08297890425867302, -0.20177758320677783, -0.1181670448313299, -0.18544488898397668, -0.3188249528236301, 0.17394258395980783, 0.10333061757360565, -0.03349127280700598, -0.04973055627353372, -0.010650035730590247, -0.21916986521044424, -0.2005543917486436, 0.14559558742740075, -0.04743169038654137, 0.008538853682345846, 0.2577933313002869, 0.027734745051976234, 0.0604994886867629, 0.036468298628776145, -0.03208878676717282, 0.058330689941761237, -0.34254109911431335, -0.08497788853742355, 0.1829839982984026, 0.2657430527559417, 0.0803633258751053, 0.07520879899038978, 0.13761397840917974, 0.11004131215583382, 0.029605433079839857, 0.2605652832002481, -0.023307548316088604, -0.009420269597720679, -0.4234529889581896, 0.09863769858908283, -0.09517284548813834, -0.17092345358209976], [2.6262626262626263, -0.13283427531945277, 0.09294669255356783, 0.1518495377762845, -0.2766518784709462, 0.29923310551888854, -0.17022335084190465, 0.1791748604483191, 0.1294669422409899, -0.0028696878813276126, -0.25689805905683366, -0.30172002975402373, 0.19048711695184578, -0.0650586325494214, 0.08765720070832542, -0.2112980267642411, -0.0808503319190948, -0.1906147676367073, -0.3216448365452459, 0.21233878293415254, 0.08290252882463742, -0.008403634886715916, -0.041050042177542934, -0.03518264725764676, -0.25452345644267604, -0.22339152917850824, 0.12186974122172228, -0.0704241594653672, 0.016471179374115262, 0.2886094948200779, 0.050381963040388895, 0.09815624503288457, 0.06954389059173671, -0.06654923016179731, 0.012998711368223545, -0.3307546908206922, -0.05898177628596768, 0.2126205804972872, 0.26155645625305296, 0.11107198004990729, 0.11571318950549483, 0.1333494825234041, 0.08866679056005977, 0.04077200924000963, 0.2476948718249345, -0.07160847345914245, -0.03231789426887375, -0.38522958908526234, 0.1090217164700703, -0.14100744479144878, -0.20721625139584254], [2.727272727272727, -0.15759163997496872, 0.07837652256419989, 0.1506788544567944, -0.23935988229631966, 0.2506177740606977, -0.17692754672542466, 0.20719478533086735, 0.10272495143685688, -0.016976428671683856, -0.2675325404268904, -0.3101786327929101, 0.18736183484725738, -0.07110807251970555, 0.13158192745931388, -0.24843380927821912, -0.108133911395628, -0.22626674302555966, -0.30854565784173066, 0.23828685145276837, 0.11263882995223518, -0.03830356005231701, 0.003924328907862054, -0.08392509651631982, -0.29319376234980027, -0.2594729580810655, 0.10166723843979641, -0.03621635843127916, -0.0032672925173125172, 0.24115787473778544, 0.050511526832212356, 0.1286402841305345, 0.06892939164488006, -0.060649416765737776, -0.01332193996493945, -0.2958596254583679, -0.039435087488949305, 0.18114285437941244, 0.22026605023359233, 0.11885353763836269, 0.12407240976412875, 0.17576447447417426, 0.12663015255602608, 0.08294662264960166, 0.27392638764785593, -0.09508988844369279, -0.000659112926485031, -0.38857976095784796, 0.1183531791223066, -0.1061110185211344, -0.18420977012691034], [2.8282828282828283, -0.12802538912764, 0.07843795450849521, 0.14922028547523114, -0.2783991873130684, 0.23862693984579114, -0.19899132903443553, 0.1948023294826205, 0.12663315586390933, -0.0430583344818162, -0.258421232841706, -0.3472131412054806, 0.19437931649704943, -0.09880133663809668, 0.08951380688239108, -0.24005850244374574, -0.12954658076806302, -0.24198953635761666, -0.3121498307346149, 0.20105152341335736, 0.08265941841212658, -0.033064492164686723, 0.0087456372245495, -0.03962495474129485, -0.2828400633824905, -0.29522945207446555, 0.057607662284788, -0.0025565187625672045, -0.02947746001408877, 0.27858533678186453, 0.09665490417150588, 0.17625527087826007, 0.08717660732432143, -0.01124457772973285, -0.0013675903794523585, -0.33303648214997017, 0.0066752183367064025, 0.18116055494770333, 0.2352799904013777, 0.07761617140914791, 0.08184657616080643, 0.22471291711799665, 0.11436146120477861, 0.07202349417469076, 0.28179766051837213, -0.06367193329094274, 0.04733316600299705, -0.34859975017521944, 0.06926704274215324, -0.06716225259564396, -0.1890595444729347], [2.929292929292929, -0.1764998920030061, 0.07295561739160904, 0.19588957753352793, -0.3114936108011249, 0.2694953888591303, -0.15288756581790408, 0.20295070243786592, 0.15280028729102485, -0.07364588984195891, -0.257144771023213, -0.3915494231349761, 0.15913915744873253, -0.08059639292526666, 0.08474896328542046, -0.21403023624587347, -0.16990714761024062, -0.21050855954757616, -0.3214145787859379, 0.18525065819988698, 0.03528026450921195, -0.022658573089081313, 0.03407664329340723, -0.07476800415800902, -0.3157662761176753, -0.32808132265290463, 0.017149904783423646, 0.03365327344509045, -0.0595158286473465, 0.32613018523456644, 0.11299467598272814, 0.1885048541842105, 0.09057973724459727, -0.056088912076863826, 0.04338850098495815, -0.28902561799686943, -0.017488713016694322, 0.14302087950408574, 0.24385084048509084, 0.07979403119121771, 0.06011604565571069, 0.20830855216351743, 0.07265032988019898, 0.09555312747695609, 0.3098499004839268, -0.027573874816658482, 0.09342184501353447, -0.30920942541090063, 0.057062669133059046, -0.06513171268779697, -0.16137382036061382], [3.0303030303030303, -0.1666155543101568, 0.03199889621125262, 0.16702436628324008, -0.31475581165659017, 0.27710793010031787, -0.19307435023706518, 0.17712091600524282, 0.17940593525921203, -0.05143020286301155, -0.3046655269384938, -0.42185380129668737, 0.11879228375888995, -0.11037682692222675, 0.07896453770639054, -0.17705161079962226, -0.1983638749624878, -0.2192999866643487, -0.27227332675351834, 0.17024383329858225, 0.03959595356624698, -0.024085448079425566, 0.019269101501080337, -0.053334598786652636, -0.34570275840973086, -0.2826277250758397, 0.04501630989470047, 0.04950566219964418, -0.10778744010822733, 0.2851871398648781, 0.13469597207380327, 0.155919782447014, 0.08211054268612858, -0.03708590965621578, 0.05507122781567333, -0.280067650944586, -0.04392488183390856, 0.12250304455555722, 0.235057562880729, 0.05119976007341506, 0.08988559549526237, 0.2115569066032025, 0.07989106275040357, 0.06893249560512421, 0.3169507971013314, -0.06396447237592892, 0.10078422966978551, -0.35334907538628885, 0.0611357112854634, -0.07486229160383594, -0.1163529859925812], [3.131313131313131, -0.15623510040587144, 0.009355188213996682, 0.15818918010102337, -0.2871608897162529, 0.2422863805533182, -0.20237479499455088, 0.17097637468056015, 0.2218555154195377, -0.0017952166230126576, -0.2783860655475608, -0.4671738290958989, 0.1671811611196156, -0.07466375588960106, 0.09359885548536324, -0.18357016762335654, -0.2145845350401715, -0.22072671558492196, -0.30038344234492287, 0.18201164112876436, 0.04736635560980182, -0.050795363215870894, 0.026545458319696697, -0.03474952050896722, -0.3818461745013291, -0.30317572602043363, 0.0679453681642384, 0.045174643356859265, -0.11606550017994323, 0.3283888449993263, 0.1732090191194721, 0.14973541091550577, 0.05740389064371358, -0.05550535779271316, 0.015272145548256393, -0.26817028020273803, -0.08758173988976466, 0.1389906089391324, 0.18834047796263467, 0.05013219834353219, 0.07054738404115296, 0.17998401050764193, 0.08170012628966701, 0.06754080707863865, 0.2674364386949818, -0.07181274181220079, 0.13059690283725403, -0.354569193426219, 0.0959123873045084, -0.05605832590838973, -0.10055931745464922], [3.2323232323232323, -0.1957203318646658, 0.053702897988269375, 0.20715573777895172, -0.2517164381457473, 0.22527185659126864, -0.2515371503943702, 0.13902160199762398, 0.20413638802844236, 0.013992889532860216, -0.3018098849441822, -0.42695160827187195, 0.21176691566415015, -0.027731615883479298, 0.09680838963042597, -0.15974421566500874, -0.2644094792448577, -0.18155876286029032, -0.29148937855099655, 0.2019413227185021, 0.012567162136034878, -0.09300805040843818, 0.04409298951829335, -0.01988585785151916, -0.3378221239731045, -0.3212553673298709, 0.026653865790507436, 0.017454492649235227, -0.16172139777112918, 0.28523482191433375, 0.21015526683995292, 0.14837884078500557, 0.03588661991701937, -0.06606144690275388, 0.06317762091097498, -0.2766714573488823, -0.07631252597356691, 0.10789038027715935, 0.16680786560748195, 0.004434280331612174, 0.026147118233221876, 0.20140947598255077, 0.060823666733160725, 0.08479765252022303, 0.2199344055500364, -0.10829590092617886, 0.13199334566638524, -0.31204139389140184, 0.08640388819653241, -0.07182111425995383, -0.10726220228374639], [3.3333333333333335, -0.2075259873703548, 0.0063573621216635665, 0.15999692345027688, -0.2806777936690314, 0.27044917120610124, -0.24473125743473806, 0.12633364878120343, 0.222030676405731, -0.01704304365061799, -0.2539272009265156, -0.39321444387909277, 0.25465441696851276, -0.06648867607278948, 0.12989119002312075, -0.1739397907971282, -0.2840551957320513, -0.1676510917982538, -0.2670366164877345, 0.24016294259562776, -0.010178560356559934, -0.05057616197239573, 0.07585436350604816, -0.04108633206957675, -0.3175452298132661, -0.3138713167124645, 0.011639029246183985, 0.03335088302977009, -0.16014377961493445, 0.2750294713435065, 0.17170247649727421, 0.1383574272861346, 0.002374319032277361, -0.0829619904309585, 0.1002851310817012, -0.2675848625435754, -0.05886445786638758, 0.10954896195151359, 0.1997018368778865, 0.005087588666858491, -0.014432287378947542, 0.23574875926288613, 0.08764896833534848, 0.07817280096308865, 0.2656035144850796, -0.08526159075410236, 0.0997865303317145, -0.3247661726757943, 0.11394935217766633, -0.058109776350539946, -0.08892431560612993], [3.4343434343434343, -0.2538783817110979, -0.039642768914271355, 0.1801295748596285, -0.3230136067421411, 0.2234876435060222, -0.23707028059801405, 0.16272698785503645, 0.1892126753633593, 0.012561957687254259, -0.20905860024173012, -0.3953862370192457, 0.30335030312850164, -0.10886870683510118, 0.08987011230105903, -0.19501946972999967, -0.2789457600055405, -0.21360936878445122, -0.29506933336690605, 0.20392797268872934, -0.05651625516201371, -0.0915087309176949, 0.08943837507394642, -0.03197068520764876, -0.3142330929543744, -0.3293647108875443, -0.0017857389891375308, -0.001522958773286849, -0.1424664551389693, 0.2432453611230186, 0.16843062643682638, 0.1123680210714439, -0.029018492417803833, -0.06398139112083208, 0.10985190192093708, -0.2830751957708815, -0.05537931010435877, 0.14003321782074302, 0.2252413461165111, 0.01676985597343838, -0.007523015375371458, 0.2084702661784138, 0.10214606304416546, 0.05658469303461325, 0.22832393165681744, -0.06709305100521873, 0.08210144344060649, -0.36895996007317633, 0.08168989554404851, -0.09450150413947439, -0.1058445852434912], [3.5353535353535355, -0.21483722536689032, -0.0613287329422894, 0.1326467312481097, -0.2941221270318193, 0.25130499622161706, -0.27335585446528027, 0.19832635538559887, 0.21017006974270402, 0.02587684109165967, -0.18649160289278063, -0.4326138011193704, 0.3342973688250318, -0.14906188707095702, 0.0491018400262242, -0.19698682386124197, -0.31400075921202847, -0.19690805768548206, -0.3133878204130847, 0.17002030977561935, -0.10138261579249538, -0.09652527748219716, 0.11111015307946011, -0.030495300082228997, -0.3087471898967497, -0.3664863870794513, 0.008623029848006059, -0.008440950946218058, -0.1637855135268428, 0.19838603859246462, 0.17194866304852804, 0.15017338373312547, -0.05635506979191253, -0.014521517409105199, 0.10442556572188952, -0.27684909433792104, -0.03702707257406471, 0.11288693267508856, 0.1818544957888763, 0.016503755895998465, -0.010929087476391677, 0.19341025040395088, 0.14290000239414163, 0.05055357885140983, 0.20291710520588868, -0.028832720848170013, 0.0993494589905343, -0.38285946294444095, 0.11234720346820908, -0.13923920585218774, -0.1370347629138881], [3.6363636363636362, -0.16674513966565918, -0.05309431592061251, 0.11473490385676331, -0.28937212691688907, 0.21944338220549442, -0.2561339978611382, 0.24233431034224798, 0.2091024082193047, -0.01812569296469632, -0.16394110083763486, -0.4485374771706468, 0.2957065691158606, -0.14624049276116297, 0.0010456544940270207, -0.19782186470419003, -0.2772573662025152, -0.21449156848968218, -0.3166837804686529, 0.1945310593433142, -0.14567011892706808, -0.10713335387333273, 0.14216879413086464, -0.0354523293814529, -0.2975127387114492, -0.3656335355965765, -0.03389894767616713, -0.055144317943833676, -0.18266874263751814, 0.22988573422071074, 0.13644188885834807, 0.1535644315900509, -0.10283950571242303, -0.008262595769410418, 0.11490054038151408, -0.3249720247035337, -0.0425037701195632, 0.11327989973454224, 0.17312487409855934, 0.055403391880153016, -0.051286922086726514, 0.22313883318869163, 0.12751181427528324, 0.05224546755606522, 0.18358823828601997, -0.020165334426603662, 0.11619634757856642, -0.3681765183919482, 0.12069600335625379, -0.14552259599876394, -0.0897509167018196], [3.7373737373737375, -0.21075094078385545, -0.004005035628129802, 0.07208761004332072, -0.2607466406353478, 0.19080906905055744, -0.29184662511533405, 0.23290830930845888, 0.2032945351442321, -0.023001996550582375, -0.20885862175601752, -0.4524472297277272, 0.2997805524467134, -0.11240990469170356, 0.030492912035843596, -0.24165875247868907, -0.2792409436225569, -0.256262985120103, -0.2878850506895498, 0.189178864762072, -0.15843812261332885, -0.06468020997967916, 0.1716590908984546, -0.0036399997849896476, -0.27174477767582084, -0.34465578400566954, -0.02763125713749835, -0.06646290215171409, -0.1679065649762957, 0.24772725412467445, 0.16821542486054927, 0.19609159338099127, -0.12608830797121903, 0.014868451068534374, 0.14251508334891988, -0.2920539058582972, -0.004171540722005332, 0.15950346906167623, 0.22124329337823276, 0.07980741961760425, -0.0133133096334241, 0.17399741682670541, 0.12155253383808372, 0.059972476806785927, 0.1960907566852896, -0.03167279770154265, 0.1326952725062195, -0.36227030123181575, 0.1683998096941885, -0.1845427882100013, -0.0810427672230103], [3.8383838383838382, -0.17169634631100503, 0.04525918811216701, 0.028176066477984263, -0.21874193634947675, 0.2060686913427665, -0.2909234753899654, 0.2811393306590358, 0.21795211492408478, -0.03318643856531582, -0.19945201032348917, -0.4844593235274624, 0.317974362701087, -0.06814395645930965, -0.004393082845470672, -0.2718269800144194, -0.3058491600714634, -0.25174350003891816, -0.29922067135949637, 0.15763913591913276, -0.18295504687794178, -0.058379630486332566, 0.21069588053206548, -0.039712193318343206, -0.2788339615718312, -0.3870450616332248, -0.00623673126911152, -0.04056147053889059, -0.1402810861623201, 0.21627160619135272, 0.18496608415382385, 0.16371279817279005, -0.1553135384096061, -0.005469404033676361, 0.09348812050943808, -0.2955017750124487, 0.03318827040680531, 0.18919385051739782, 0.20017938286780826, 0.12882015365536156, -0.01672071339550836, 0.2152523788073257, 0.09061657701989902, 0.04534576177797509, 0.17733416778471486, -0.01184404034680175, 0.1554481204934742, -0.37357037208378846, 0.142234836061949, -0.21594904669436943, -0.06833298480225829], [3.9393939393939394, -0.16400619637100175, 0.0945709253602715, -0.01068330185161042, -0.22064465975668865, 0.17047788594884944, -0.30404728013695276, 0.2793997250373434, 0.215795473101481, -0.03743766744342096, -0.17773934468515112, -0.48235821414229973, 0.31627894943227897, -0.11786037177834569, -0.04633631352158729, -0.2554930902053288, -0.3538654288423389, -0.2796118690517351, -0.25793658216280513, 0.1713518747721462, -0.21649210648889108, -0.08017962991648794, 0.18406212384437295, -0.004526719985888904, -0.30946749691866127, -0.4290012469930162, -0.024150988924567643, -0.0661386320029908, -0.0906933591129872, 0.1834731605075459, 0.20433874255190326, 0.18727765279601968, -0.1401930094287867, 0.033582951868911026, 0.10782711635183923, -0.2739399159366157, 0.0316322583662628, 0.19298936387446408, 0.18466820271161014, 0.14704694545632707, 0.009450434200901824, 0.22408436374073273, 0.04161094906188275, 0.03158168753426789, 0.22686630280555456, -0.04609552309957479, 0.18591219866665218, -0.35942329091626124, 0.12281201422528301, -0.16959582589073, -0.03933261210419074], [4.040404040404041, -0.139758227461204, 0.05557575845692779, -0.04375641103706733, -0.22468929275567026, 0.15857861300955475, -0.3291365412010992, 0.31711180328429256, 0.24389382963880188, -0.07010812658471766, -0.22355204959980163, -0.45541572303522776, 0.2667384685031426, -0.07138107813689015, -0.02639761211743097, -0.24251778961261022, -0.37453330753101743, -0.2931097663655175, -0.305859898065867, 0.16517631971973137, -0.23250424528973576, -0.07589542733712333, 0.15818757821702487, -0.009464934515905209, -0.33142893956284497, -0.4487210933767205, -0.005825677699325186, -0.03417103350290779, -0.07343247511741147, 0.15382513685666122, 0.20811440697313288, 0.14369297837674533, -0.18061360710167948, -0.015991243330582994, 0.14665245849314124, -0.3000371257541099, 0.03168888593869562, 0.15063037591544415, 0.2226404728799369, 0.13904884991062216, 0.042979600607011295, 0.21335411649945604, 0.08720528765104263, 0.02639029071293505, 0.1870237836087778, -0.0514587154914896, 0.18411202309225325, -0.3213641560420921, 0.11688217887380419, -0.1776545813880413, -0.08142157351296471], [4.141414141414141, -0.1267398338136664, 0.0720239030533218, -0.030987783086961925, -0.21479137720757494, 0.14915206626681965, -0.36550832899776503, 0.3079997253089909, 0.2502722755935301, -0.06459210411779703, -0.22496721625616162, -0.4306929952118126, 0.3024675422053818, -0.10490021140816493, -0.07191066428338469, -0.2010404827221284, -0.4126915202891752, -0.313285774309199, -0.3184621929210071, 0.13288163136358655, -0.19534752073885495, -0.08601943945108939, 0.14344915915598522, -0.05580220710972498, -0.357733984097077, -0.404388788243018, -0.0354542367015023, 0.0037176548980187296, -0.09615799822701585, 0.13325741395421725, 0.21054245298948915, 0.18552472682295018, -0.14651694490550732, -0.034945960619530037, 0.16347798194904956, -0.30030704650673784, 0.000700714448894732, 0.11085308445469076, 0.25050680865748504, 0.11077137581024907, -0.006022185481684504, 0.24294087528164124, 0.12560165585543887, 0.02216712388871508, 0.1372128519810472, -0.045398359197566525, 0.17890154748718223, -0.2884945698582103, 0.09569009641925497, -0.2222459846959343, -0.12922578115416175], [4.242424242424242, -0.11855561457378862, 0.0744225865021531, -0.037148473622977594, -0.20485949913514648, 0.16504860972408, -0.40357921578543926, 0.28997704793642926, 0.28518831282321017, -0.047034533836100234, -0.17628479036177253, -0.3942250782826723, 0.27586272287053165, -0.10919674238204263, -0.09537557405243775, -0.19176542049322054, -0.37240181908485365, -0.27994411773879363, -0.30458800682255316, 0.16395775153930026, -0.23137683288175814, -0.0812376766266614, 0.13889316622903505, -0.012525991165945993, -0.31573730428534696, -0.41448464927356693, -0.0750163452508244, -0.02742616137830002, -0.1353625380831848, 0.09191624054319458, 0.24408578600586872, 0.1662957848649207, -0.13735751847989663, -0.03841021971433992, 0.13103000746065752, -0.26692038593548933, 0.026238471034828667, 0.13707681049365533, 0.22855547227707515, 0.13366220581334415, -0.03611776656414235, 0.27465252426645803, 0.1446239437313156, 0.0009081987087976584, 0.13220566316598412, -0.06028144799706778, 0.19537452461244098, -0.299699710330516, 0.09743157240683145, -0.21747836315307062, -0.15336664358610325], [4.343434343434343, -0.1665117013710963, 0.04173757748302619, -0.00405809716258012, -0.20442215401177072, 0.16623087709542436, -0.4483404031397468, 0.30422390775297053, 0.2684370620862888, -0.01439174977306161, -0.22150215687169822, -0.36781289434452985, 0.2869919612935713, -0.12265762133410463, -0.09495665754510392, -0.23093874410299314, -0.4017020517986836, -0.322061444885214, -0.2785921459243598, 0.13603986262479273, -0.22806402001576725, -0.042691309306908946, 0.1600449499017685, -0.0320373514159988, -0.283205269382712, -0.45553039705578685, -0.07743413485248837, -0.047755270620356165, -0.13983641274514338, 0.05055350998392224, 0.2122314093641622, 0.14976962380289385, -0.1782683722020217, -0.016072915282947287, 0.1116340236064827, -0.24605200991416437, 0.036503308937147955, 0.16554527921964382, 0.25373248873741955, 0.15737728796361747, -0.0764323134515473, 0.25803643871575255, 0.11570556830013351, 0.02771415878591893, 0.1297050797654509, -0.10279217256653597, 0.20585029778252498, -0.3025800063663211, 0.10129994505355847, -0.25063341185612376, -0.11288839353613689], [4.444444444444445, -0.19550904360381025, 0.08603360197452878, -0.0300788782061329, -0.22373430103742564, 0.16448938748044856, -0.45485047167044196, 0.3251604523345703, 0.2872008966592711, 0.011005784867886097, -0.21361695945797304, -0.33256055009876906, 0.30522645361358974, -0.10505103039255134, -0.14123128778445665, -0.2379241595272612, -0.3941713975154096, -0.31386446550590164, -0.24607097623602503, 0.17744192641887768, -0.20956979072522702, -0.02606437418211123, 0.12286163575015946, 0.013843259249612008, -0.3037576617116095, -0.49377934945448265, -0.10885665904665008, -0.023008199279854417, -0.128388345896421, 0.0864201511380679, 0.1961357653988205, 0.10392505296725785, -0.1776251545482017, -0.03895169908548839, 0.10665021296030441, -0.2677861320216555, 0.030897249404853083, 0.1418914775727833, 0.2297713616293962, 0.17476685171659975, -0.1024018314005149, 0.30016275080172394, 0.13362147004581534, 0.012488751283967736, 0.128720817446612, -0.0878278446879805, 0.2182905744873569, -0.31960371400730947, 0.05696415542987322, -0.2951262227489229, -0.12087914536844571], [4.545454545454545, -0.1910405557859455, 0.06021961057215401, -0.061073607414159195, -0.2195990030025144, 0.16689156730884744, -0.4277799336117633, 0.3493951340075798, 0.26823348242125405, -0.035187588643835435, -0.2564610196660295, -0.3557708065639403, 0.2854198128125582, -0.12265457806463205, -0.13308035948868435, -0.2423279806788277, -0.37555097118826575, -0.3076280332195773, -0.2920342190341835, 0.17100511589549858, -0.19733072231957852, -0.06608000204052705, 0.09574560959848875, 0.0591086182194911, -0.3255552339676886, -0.4793801267287495, -0.15741745535071705, -0.0714910393813125, -0.11197002628683264, 0.1010191036318606, 0.18053528288227924, 0.07378119064369641, -0.1580117333037421, -0.019306532089448276, 0.10247501607944097, -0.2573093466369577, 0.07295921721903642, 0.1073086410044676, 0.19647694687225697, 0.177548939891118, -0.07925652215355457, 0.28997470724688335, 0.13453790865008025, 0.0008470782155569172, 0.08217838433862071, -0.06522183169917267, 0.2569245927778917, -0.3059888449130211, 0.08998067300931789, -0.2845073288550632, -0.10277901342495672], [4.646464646464646, -0.16412903867538034, 0.11011283745647521, -0.03988364155586763, -0.17710630866223523, 0.19752015463311956, -0.3926885153810805, 0.35984659672254854, 0.28431302857263374, -0.005676223453675133, -0.2784468452361987, -0.33285177391411275, 0.2951491104181256, -0.14139964401605612, -0.13131428734350747, -0.23388208980146558, -0.3512831281281289, -0.332444723870586, -0.26358034036624334, 0.18742184795384428, -0.24542291021448434, -0.04506436445202974, 0.10419314539204896, 0.08521565629071604, -0.32739853152032894, -0.4296377134107194, -0.13486955567961006, -0.034405030090901, -0.08982452758792231, 0.09408725869934886, 0.13249216108501644, 0.057662627108475084, -0.2023080390939626, -0.02629036251216324, 0.1152803232966316, -0.2912237615782296, 0.03235192253392916, 0.11714546362114552, 0.17601665139926947, 0.19249394993627797, -0.05007060488117635, 0.25895320867779287, 0.13794500307820612, -0.025720113036284787, 0.05561525784257089, -0.1045975264743262, 0.2800076358583407, -0.2963278214526867, 0.1396355348605209, -0.3344547732654962, -0.09874304647743148], [4.747474747474747, -0.18905951576154076, 0.11838221897146509, -0.004054149023189874, -0.13005122845921335, 0.22795926270004893, -0.38056024863812143, 0.39569075146171107, 0.26976049634788496, 0.009716957254409454, -0.25826466263565406, -0.31408723772301894, 0.2842483110810357, -0.16829337362546773, -0.13864420921057743, -0.21339687189185946, -0.3549496032189946, -0.3668890033512929, -0.2288577821965151, 0.15339965133099928, -0.20668802834657363, -0.057722420979192585, 0.06373656934213151, 0.12874797387859083, -0.2857329315070026, -0.39036987450288574, -0.11906690722758614, -0.04209752577600338, -0.06631771126696966, 0.08886305737232977, 0.15434081042535638, 0.09330403835794696, -0.2118669056922472, -0.02777684088687348, 0.12030606438867415, -0.302351949814118, 0.046021471698652644, 0.1479373358466159, 0.2143599055302264, 0.16418178771028258, -0.09269986657742882, 0.2639707430276616, 0.11350955092289768, -0.06312133233169842, 0.029070064267948614, -0.08644183063919729, 0.3143683031894671, -0.2574601607005284, 0.10321947090065808, -0.33882684313793704, -0.07276554911601149], [4.848484848484849, -0.21046994672085428, 0.08671011903452266, 0.0018514395364120752, -0.1404717674695137, 0.19272930631029983, -0.392571479798311, 0.41068143529051143, 0.2258917449621017, 0.02021628749039599, -0.2920324686758491, -0.3289991614308524, 0.28979413578849084, -0.18716545583901598, -0.09711761099776284, -0.22146809900476738, -0.33060464688268676, -0.35805957285992274, -0.24853190727261484, 0.14433800482933398, -0.1709102891932651, -0.09166720803570493, 0.10464820625728957, 0.17738649469966006, -0.24033454108833732, -0.3822100968968102, -0.12328958584709714, -0.05989347889193555, -0.02299100286465678, 0.047685907299661504, 0.1233524676596743, 0.13113376090823395, -0.2571936650952194, -0.04178691515867343, 0.13882385079765433, -0.3355702122946577, 0.0370479469782503, 0.1590737332719135, 0.23467669006403047, 0.1838019095188191, -0.04896910589133126, 0.29638798014346496, 0.1392503558241175, -0.025663143786785532, 0.06033182344450131, -0.11263714621794794, 0.36306450871373414, -0.2915547158803791, 0.1448658455749361, -0.34201789328026866, -0.08319368482313078], [4.94949494949495, -0.17523043793672366, 0.07539466122630169, 0.022293480365297786, -0.11059724021397979, 0.24207466401836958, -0.374580376156587, 0.38773002421025304, 0.22028259348197524, -0.029703799860757284, -0.29280381995569454, -0.3160592453747929, 0.25012654741047535, -0.22088597998834397, -0.1045386376703613, -0.1949414699503928, -0.3480191607305123, -0.34737522565944695, -0.20289400316501296, 0.1640357934774227, -0.2000529555822198, -0.07178669918368684, 0.1177190043016147, 0.1413413779972674, -0.25863870916124787, -0.3800070710089693, -0.11949598043672564, -0.031964862354443596, -0.05465560212237072, 0.010516398110179938, 0.127176442973981, 0.1773836685721771, -0.2208004173833956, -0.00992812591956533, 0.13531000244080071, -0.34907662792490235, 0.06252914661093696, 0.2090076215271477, 0.22883781956992877, 0.15897385849857715, -0.06639245949415563, 0.29045526485198986, 0.09467110688266404, -0.047282314316039416, 0.0995811518706533, -0.09924326273110616, 0.3582332967493271, -0.30871016739640844, 0.11687517524434138, -0.38595339742054985, -0.07103371593841899], [5.05050505050505, -0.1277297885760649, 0.04436201411751665, 0.03280468391711569, -0.09708842543888714, 0.19885143759348867, -0.39320382573061513, 0.4235775107733586, 0.241115178458585, -0.0783923217143937, -0.24734924882594606, -0.32700362709247854, 0.203092631380201, -0.25809420315207676, -0.07361956318351957, -0.23640542781387275, -0.37977366734392926, -0.32438824504428115, -0.16341375587481516, 0.12259205885352462, -0.1821494636621579, -0.1215194326506123, 0.098507268160652, 0.18004458779518046, -0.28582922538114097, -0.42109444443306443, -0.1658570266586884, -0.07979899009366691, -0.07239555016850391, 0.01895826139811483, 0.15362770107378365, 0.14277321482498287, -0.23208938020092282, 0.005361287860418333, 0.09892324031109809, -0.3521486924355987, 0.06377218895600398, 0.2406315958711835, 0.2678174704339206, 0.15677969307376594, -0.07001220004861226, 0.27549161422788593, 0.10118578236210295, 0.0014310755604487954, 0.11598441061731865, -0.10570962721040286, 0.38847315966592644, -0.32909026115137585, 0.10209861696271107, -0.3477356396333522, -0.037986425266500694], [5.151515151515151, -0.08924445922695434, 0.03543908142004765, 0.0387264122439197, -0.12409150891398384, 0.24843301828972814, -0.3705400274306834, 0.3916600075740375, 0.21685704423993174, -0.11368183678063234, -0.2384137325894218, -0.3255607676846276, 0.18644871132181653, -0.2924046733233401, -0.11763276177637237, -0.28225147602294426, -0.42472137985399006, -0.34377576465682036, -0.1822149182781221, 0.12897527844556905, -0.15028953999796035, -0.15487927214203803, 0.10098700150232265, 0.14186365481236135, -0.281708310455938, -0.4228856278463888, -0.17093346003169804, -0.12490651474117767, -0.12197815798931849, 0.008544089367594866, 0.19042938933777365, 0.1321374082639479, -0.2502654333731516, 0.03455304300719448, 0.055131101232356074, -0.3729108040154138, 0.08325540656964643, 0.2892288853925271, 0.2665599907142017, 0.1503626206307387, -0.08099880101859776, 0.2901825073830877, 0.11670137891956857, -0.04277050522185042, 0.14291452373207517, -0.07364744092649289, 0.4370440671939006, -0.2795270803041421, 0.07787798448081837, -0.3526701253290224, -0.06408381180164013], [5.252525252525253, -0.10329367483326411, 0.04490708831021819, 0.07476583133467837, -0.16897079962769013, 0.21077798755505903, -0.3290917083219452, 0.39543051908884475, 0.22869334702799493, -0.13711944491265166, -0.22775105056834766, -0.34516441412033966, 0.1919905232282375, -0.3150463645005551, -0.1587960071700334, -0.26050924489156013, -0.44946485570430383, -0.3176679643942554, -0.1930867957858023, 0.1688240054614083, -0.11055325501716193, -0.15107770085665928, 0.0799599522767263, 0.11946763486606914, -0.24409721912614746, -0.37671637483291204, -0.1902080590654208, -0.15715510756322032, -0.11307569672811127, 0.045669196565375686, 0.15750750376246636, 0.0869752028140319, -0.20743872370938574, 0.05008812025243807, 0.07349676801498493, -0.41026835899544817, 0.04068601837076509, 0.3117088605164987, 0.28532034831720965, 0.1588305047618467, -0.12177606557798688, 0.242757805376363, 0.08635542553975822, -0.08481054708348487, 0.1498293695667864, -0.04703701482322527, 0.4816705840983016, -0.3286523493894209, 0.12318998381553992, -0.36796486354925695, -0.05422391982223825], [5.353535353535354, -0.0934077802456894, 0.06656569762305217, 0.11674136724968535, -0.21612441901055496, 0.1669709073483991, -0.3696021602479896, 0.3841235108421929, 0.19085587487949032, -0.18106999408479985, -0.190952396164497, -0.315464438067473, 0.1931768715468693, -0.27547422214664763, -0.17326754997921934, -0.23562064434232258, -0.4065573423613049, -0.2740980588643533, -0.22735519940103238, 0.13564195084134403, -0.08640540868336714, -0.15139016616049145, 0.09080316171629443, 0.0701634719849066, -0.2917371280700722, -0.3345075852456752, -0.18623639365776878, -0.11263813596933213, -0.09767640342353372, 0.06174456274067343, 0.1984849570652287, 0.12836151595563014, -0.2297308707980191, 0.06073336810291393, 0.06434370545062203, -0.39511825945756507, 0.027943332064218118, 0.3164230882634588, 0.2363713950904028, 0.20336038916784702, -0.08255718375900839, 0.19851865994060866, 0.04335762708200372, -0.06752074262546355, 0.10586413841101747, -0.03470837323771606, 0.4657993159192571, -0.31938635613679417, 0.17003471835972248, -0.3296776801596955, -0.09727310442439216], [5.454545454545454, -0.10792821907995942, 0.06525484585996452, 0.1517020998255835, -0.25383964382017804, 0.18737445152622104, -0.3531044650647644, 0.3960820317695765, 0.20458830568996336, -0.20528343099983262, -0.1472976024800385, -0.354682130550492, 0.2021975585225391, -0.31743153220763715, -0.20849875124156467, -0.26565708892414625, -0.38757250559286094, -0.2843767673221486, -0.23396313745026964, 0.16938078416742383, -0.07919279349439919, -0.19963272366914273, 0.04844420232282038, 0.036702424452052775, -0.30269233084532643, -0.30092828254472903, -0.19976123128037054, -0.15561570864166202, -0.14721001058265112, 0.09258464783315581, 0.218303533521925, 0.10916282807003258, -0.20168507738449792, 0.1032922498916089, 0.10055261381645719, -0.4093748645529118, 0.013685568179395513, 0.3001499687663603, 0.2604693658186154, 0.19013849716088807, -0.10730277549651254, 0.24659172823503006, 0.0912973978990809, -0.10134224417723672, 0.05960293674474674, -0.03281929423984111, 0.49400363853023804, -0.31724429762138684, 0.18022046499185798, -0.285299069620926, -0.0718776022409289], [5.555555555555555, -0.12390919754289484, 0.04621382763663498, 0.12714875337502896, -0.2818183920368142, 0.23347241682400938, -0.3674171856596453, 0.4009406623668866, 0.1604174803818015, -0.23237729769799625, -0.18288155648687643, -0.3299306624043965, 0.216743829658099, -0.2700306713526488, -0.18927566198736953, -0.23807989016512665, -0.40566363198704625, -0.2497319010465367, -0.20384839633879964, 0.14482466797547644, -0.09691415942304561, -0.1997677530275781, 0.08319594481750835, 0.031827634156295914, -0.2926912837413136, -0.30450241364041775, -0.21552155978748824, -0.14975420517026364, -0.16285154000606764, 0.0740554679145974, 0.2032602757384318, 0.1340128296045789, -0.1798984125069169, 0.13159254045254015, 0.0516331781396025, -0.4592730404000028, 0.03814562170929136, 0.2646133054292599, 0.26415630334627516, 0.22490751786275923, -0.11559408709602942, 0.2810323330662178, 0.11627985391971413, -0.06699463327921364, 0.09729352830270085, -0.017109904076987523, 0.465312631011988, -0.32041902238320463, 0.22830922504294596, -0.3242795538261388, -0.04965877860596435], [5.656565656565657, -0.15610109859231436, 0.05395796491941972, 0.16490430760370606, -0.2489161166667319, 0.2546875116142433, -0.34118809363341174, 0.39733006356876804, 0.11517989050454319, -0.19996892058829813, -0.2051808374667981, -0.2832398050035778, 0.21658470891080597, -0.23992260467957632, -0.16074644666810112, -0.2793084467966598, -0.40648976355035, -0.2347755786948414, -0.15749441358589172, 0.13294864366139042, -0.14368147177323212, -0.21836581248098794, 0.05655665288518125, 0.06673043004418219, -0.27296222206649146, -0.33842836256968545, -0.20188776325287222, -0.15699718700544224, -0.1525809694308667, 0.02810336718292729, 0.22805169350139975, 0.15197307617414715, -0.1533284774172503, 0.17305562974596783, 0.0358706081180102, -0.44095054978047005, 0.01507748735536876, 0.25517322634848116, 0.24375716117044155, 0.17784600304228207, -0.16325798477243125, 0.3199962779140417, 0.07509983155583637, -0.08868868830577926, 0.07301716762343305, 0.006021554145227995, 0.4502847919942133, -0.3460382930536321, 0.24964512822753493, -0.3630110084450721, -0.06798599933224178], [5.757575757575758, -0.18233167772990932, 0.04812874687629401, 0.15841732661292862, -0.27036693389672795, 0.27099564384631675, -0.29668752451830943, 0.4299745473919036, 0.1163743464249364, -0.22978347193311086, -0.24264864374126932, -0.31752415425914876, 0.20189762317762686, -0.23186033070265927, -0.1690326481873895, -0.23586583742762338, -0.42125094189377627, -0.22847411479988514, -0.1649985615648872, 0.15051869667681791, -0.16195582433866024, -0.1886816520001882, 0.00849539276291552, 0.08144789700974314, -0.26229886810298225, -0.3392246301654008, -0.16836513560996139, -0.13848567058426875, -0.1353526401980224, -0.02081151450062703, 0.21319804117925759, 0.11798657863579305, -0.12356225830168668, 0.20639031838561012, -0.009776825557864001, -0.4856202017708769, 0.03666387643109742, 0.2291504199784939, 0.22036102298601762, 0.21080356677161718, -0.11808559198005258, 0.2934248249549176, 0.07687450012554786, -0.04396051948772585, 0.10521083382630925, 0.05440653456803332, 0.4921684882674693, -0.3026543533728661, 0.25787021428400764, -0.37425370151550374, -0.11291826140134562], [5.858585858585858, -0.22784544948383179, 0.034096557136347634, 0.18136676100937943, -0.2422605256336188, 0.23436314006877318, -0.3243133042331695, 0.42007433013442097, 0.09630584551341134, -0.19167423937024064, -0.20417656492551783, -0.2802345690829376, 0.1906986032003014, -0.18329482863418717, -0.1866978702105673, -0.2670112938111814, -0.3858543171200672, -0.19895615964093244, -0.1790878516436601, 0.16565998562987014, -0.11312279681350965, -0.15716679266409217, 0.022588779312447772, 0.03552373743331796, -0.26969265112132357, -0.3117844088097089, -0.20218687878519315, -0.11802586420179968, -0.0999966893828837, -0.04679816066155317, 0.21842816824488345, 0.15229223097623226, -0.12308634428742488, 0.20887853411776236, 0.0305561465168983, -0.4486515915640363, -0.0025046919685220784, 0.2231418026085444, 0.22745691734431192, 0.23710761886144688, -0.12285655544712135, 0.3213470836378038, 0.0956683033760804, -0.059827893975486934, 0.14975768730057648, 0.038819075428928214, 0.4777057070302599, -0.31553916265908977, 0.2655292124528163, -0.3718896639332044, -0.1043078990452232], [5.959595959595959, -0.22730230652025285, 0.016229750337228992, 0.17263083776325885, -0.24179394437395088, 0.202397656991608, -0.3685879823077485, 0.4320246581112609, 0.08094945904746832, -0.22023778880166467, -0.1715027878790708, -0.2587903857315135, 0.22107183376262665, -0.20341219058436866, -0.14508716549766984, -0.29646911633990547, -0.4105259528284005, -0.21879340011692316, -0.15825461789743525, 0.13618256911647397, -0.08393739454581911, -0.18091435893914753, 0.03913563240660104, 0.054618725072293005, -0.2890991715123207, -0.29398880500286445, -0.2211194661894031, -0.1002614063337851, -0.07874364493772326, -0.011262462162918298, 0.19898733504716368, 0.16690149384146907, -0.14815954676650955, 0.2316333354305601, 0.06791597573983761, -0.4058637317401269, -0.030157103128978582, 0.21988427457860166, 0.26008978029969787, 0.24242943259000588, -0.09704403816659676, 0.34504171022717883, 0.05017030032402553, -0.01791884826337787, 0.19667222081362598, 0.07150021246808033, 0.5164328609087319, -0.27727398836473555, 0.2545696167072749, -0.37220283632215706, -0.07020785835683108], [6.0606060606060606, -0.23967706109051656, -0.012949525643168744, 0.1417144423443811, -0.2779490519962924, 0.16806924388383632, -0.3543077972844347, 0.4320955699446404, 0.09587120250783794, -0.26111303874437747, -0.12196689976979277, -0.2738579934235933, 0.2228665370858785, -0.17477105340043803, -0.11134589292703952, -0.2974098626724841, -0.43215036272926366, -0.24120106792006651, -0.15121270007262166, 0.15328998591126713, -0.1244310135362538, -0.17684301539604566, 0.04856628551565245, 0.07903553179040892, -0.24353180920213252, -0.34244257142081047, -0.20104288440523402, -0.07085048341074757, -0.048112828852406586, -0.006531216365979332, 0.18050102201976606, 0.1755086175117375, -0.14119374509233532, 0.21691436130599312, 0.0786749284449108, -0.3617538308474327, -0.00042758731193490856, 0.17557034093609325, 0.27757314205038985, 0.22031077824447454, -0.06671924983176764, 0.338329427047132, 0.07682513647777682, 0.029398777466455334, 0.17941974811398825, 0.026657401273233516, 0.5173006992108523, -0.3272251191219895, 0.2191810567110636, -0.36609181755264253, -0.052267916097646715], [6.161616161616162, -0.2303965209929279, -0.017823663236985306, 0.16231639433999734, -0.2501453967628946, 0.12711659201171938, -0.3954300864291494, 0.432184520360008, 0.1407600295186995, -0.2365324593920669, -0.09057993819069174, -0.30505019641788284, 0.23870624566093446, -0.13509478163168262, -0.10164987514513607, -0.3260942522962874, -0.46307308252095564, -0.23568692643473632, -0.18798923850749766, 0.11400412270126944, -0.0924088132916922, -0.22684155353913313, 0.04309980131569733, 0.0635171212461794, -0.2898523891030938, -0.38422818439714024, -0.16098776000503723, -0.09800362651582978, -0.036549533751477445, -0.018239378544886123, 0.22084985506345617, 0.12894312991975687, -0.11743632899032469, 0.22164348068927603, 0.07800099733347289, -0.329407274881568, -0.04321641859637596, 0.16153119623145845, 0.31640556107676365, 0.22363398133677007, -0.01859087829713097, 0.3379378724543321, 0.07111222822384806, 0.04275647550553288, 0.16149413168518278, 0.028002905219188235, 0.4985274363190384, -0.36950777404679813, 0.18858757466315662, -0.3682986981582199, -0.02958926341533142], [6.262626262626262, -0.21740233343417817, -0.018639372210579916, 0.13637967643298263, -0.20801221741081033, 0.17430320683622264, -0.378636244929284, 0.443074830741682, 0.14238421743648702, -0.23609845588680345, -0.12866536813103271, -0.2658823960645993, 0.1975264300349855, -0.13554343527965124, -0.07701910540025864, -0.2981833592632551, -0.458082973061993, -0.27928000013656284, -0.18943474692119472, 0.14573928372951683, -0.1261833132678242, -0.1959100467290977, 0.0005688333481782201, 0.0452376401295007, -0.3155938798301242, -0.38040694756297516, -0.19744739638616182, -0.07474033768727405, -0.07049828915430897, -0.05597873388541254, 0.17915072232477552, 0.10220643731448001, -0.09452807807671619, 0.1873883642219923, 0.1230914570912026, -0.28922590105965, -0.057883007487013506, 0.1312370535917159, 0.3475247959242972, 0.19406465366336292, -0.01700313327013992, 0.3626996444277666, 0.06809064230200344, 0.06666771163703494, 0.1489949876154089, 0.05775681853870064, 0.4797680806876024, -0.357143872629922, 0.14983052466257119, -0.3869258661368113, -0.006531966223612778], [6.363636363636363, -0.2531423019895498, 0.02126825926879121, 0.17151211911628217, -0.16371035420719118, 0.17528931986471263, -0.3679141064161712, 0.4926113548412719, 0.16373856151250935, -0.22747825155846668, -0.08551168977960408, -0.28135009815899237, 0.19476333423258363, -0.0989412402642397, -0.06396639153617212, -0.2864201702125539, -0.45588673221596165, -0.27962875038953916, -0.23397393427474983, 0.16561335156599638, -0.11625588868756143, -0.2413592427497541, -0.009321163835014381, 0.022564848214296614, -0.3039487544311844, -0.3949997619419334, -0.14983680887637826, -0.08668340358150999, -0.056745748982749394, -0.08994046699800576, 0.224634546542474, 0.08324829981067346, -0.1389750923536965, 0.203113312830485, 0.07807593207378916, -0.26005876179105913, -0.04642603205761103, 0.11736858112164908, 0.3571554015451788, 0.14701028055626522, -0.019906350168821224, 0.3404352135853268, 0.051278240416461465, 0.04953694309353059, 0.11576302202813049, 0.07154166711900746, 0.4457948000007498, -0.4001507447189515, 0.19602459098948113, -0.35438769798773173, 0.026860121100654038], [6.4646464646464645, -0.2097581720429079, 0.04420430537173533, 0.20392234804214085, -0.14326677448079683, 0.17037706749481782, -0.4159541244388869, 0.46740630676293576, 0.1723546863913908, -0.2410626402389789, -0.13481302050649338, -0.3108060068991558, 0.23486527719560366, -0.11485667627529988, -0.11250992666780466, -0.25318411791588125, -0.4909928385562071, -0.29191199360661363, -0.24137203301664337, 0.14941663957116008, -0.13511903371671669, -0.2657292510846351, 0.025932106575721172, 0.010928321029131344, -0.3017888750375932, -0.43091747476793363, -0.10782996020288944, -0.1366112227105426, -0.06718585104063939, -0.07194708233165659, 0.2145047125461651, 0.10746285028081544, -0.1327847412415711, 0.24657756082068122, 0.12070355233832158, -0.21871834495060916, -0.0298082220064786, 0.11656138114167269, 0.4049860137248158, 0.10829730377826527, -0.01209262661916452, 0.3309028032565096, 0.03032063053727964, -0.00014058449933871536, 0.07725038121033304, 0.09641408264471699, 0.45188982161108726, -0.401972559051221, 0.20014751572725023, -0.3173736968510872, 0.026319561176863675], [6.565656565656566, -0.16512018396199776, 0.07121328266370489, 0.2064435267035379, -0.12387512993320596, 0.1533471653445391, -0.42657479000311305, 0.49124964735213716, 0.16184827020493012, -0.23573724428486728, -0.13097339556124674, -0.3498663331203311, 0.22946500990770544, -0.09678712642714657, -0.14621402897654637, -0.23261129538193198, -0.47214238803797953, -0.2661617304870919, -0.25510249748606306, 0.14707608248409043, -0.13182695711171877, -0.28016880406792155, 0.0011950463725856723, -0.004777241254805015, -0.288429789665819, -0.4167061292881698, -0.1324535518342902, -0.13466833364411276, -0.05279667050481539, -0.11268530263414597, 0.20963555787152002, 0.1438522651345186, -0.12242397701247232, 0.2650505191106517, 0.16923096618088002, -0.2424132721905869, -0.052086632180591674, 0.12419470037631153, 0.36152734020730637, 0.08369130201179589, -0.004973889369612455, 0.29018030613996504, 0.002483109073609671, 0.032935113999467636, 0.08866947844316175, 0.131175779508932, 0.40580914033673343, -0.43258455064792517, 0.23574749895449623, -0.27227417672580423, 8.897692272758287e-05], [6.666666666666667, -0.1548905181889112, 0.05875720741990371, 0.19507760613415476, -0.11921994859645646, 0.15269836954948657, -0.4306240597345013, 0.5342540391701943, 0.17902992273394003, -0.2044527743742403, -0.102723241341503, -0.3308729829424136, 0.19391309550560532, -0.12313486868786853, -0.13723390327005333, -0.2055189210615059, -0.4310943556241511, -0.28624921519967644, -0.29779408322111584, 0.19523173840935987, -0.13515339202172932, -0.23486147702573515, -0.017571723121180452, -0.016493666976374496, -0.3029990081009856, -0.3798376595372337, -0.12218523441142407, -0.12831151561545126, -0.013837103504671815, -0.06579510872625938, 0.2422601435262911, 0.16361939437991146, -0.15233357646884266, 0.2971500256580739, 0.15874284352019677, -0.2183201296039642, -0.035974785622247984, 0.12447287192187259, 0.40095618561199164, 0.08998293889101097, -0.04648322679743678, 0.2603687975846981, -0.00826523811384978, 0.08054813685574364, 0.08564156921033378, 0.09032975013645919, 0.3847795116819147, -0.46074699193794355, 0.24315486650333717, -0.30973459973243156, -0.03952126211943563], [6.767676767676767, -0.1661138901562481, 0.043131160943442146, 0.20416568520764722, -0.13229822562266816, 0.11705846805754483, -0.4785104585784258, 0.5426952467397371, 0.15274698036161238, -0.24044544863280107, -0.06383631616871181, -0.3774394149439683, 0.15029371509688766, -0.10493850969953206, -0.18602709421012886, -0.20455416449914596, -0.43295851110391276, -0.33164495193591637, -0.2803617169786963, 0.15287788487697404, -0.09527221565473859, -0.20281127698242446, -0.021181566550555756, -0.013998788935466074, -0.3155729765218507, -0.3382954972100973, -0.10076542884155451, -0.15537632237405835, -0.024526344508023205, -0.11465833474456275, 0.21621727411953703, 0.16433270146554638, -0.13332369592823395, 0.29260270639132824, 0.20832419131101138, -0.1755720932350423, -0.016126577774528736, 0.13185362835399625, 0.41319944715632906, 0.04687321271521705, -0.06768295691538387, 0.24480877810589438, -0.04040970950042737, 0.09497286748449689, 0.0684890936135168, 0.10956992590912364, 0.42359978378601565, -0.4565387815058425, 0.22933138409154855, -0.3209968526134988, -0.07505951924494238], [6.8686868686868685, -0.17979508974531314, 0.05863468154337439, 0.1679180466984298, -0.08405146814996886, 0.08215049714159256, -0.49114136844392403, 0.5807599619476311, 0.18756789498511714, -0.2636829384208312, -0.08329875341155941, -0.379462306940878, 0.11990642396451609, -0.0776386156316429, -0.16453644908604576, -0.23477869950184385, -0.42543426788446137, -0.34564207618758747, -0.2490954100132381, 0.11745190293144253, -0.12349371348788375, -0.17272241641049502, -0.04270530190536859, 0.011330523199815527, -0.34271722471010424, -0.317831326670133, -0.14287034963507358, -0.18098799768700963, -0.022142410957975603, -0.0740730211091769, 0.2660460424203685, 0.20968097640350689, -0.10765771097305932, 0.31323149986674725, 0.17409850668491206, -0.18372410934881292, -0.020496702208701298, 0.1546958268425026, 0.41058207709398575, 0.09607634295734863, -0.026540598099789973, 0.2632386808609559, -0.0009681701489522229, 0.12714145545513178, 0.06541577992340351, 0.08165708009814307, 0.3812852872612159, -0.4326206713083107, 0.22606559354865127, -0.3609642733128504, -0.05630828204366215], [6.96969696969697, -0.20936056205844872, 0.07973848086442414, 0.19874508748759062, -0.1274905456072184, 0.11368435508758032, -0.48458465474631407, 0.5999658739281979, 0.16681521168616836, -0.23972808339504836, -0.06883100301800124, -0.3776316394419454, 0.16175921789592748, -0.08315287956457416, -0.17757699582196437, -0.18655151966421563, -0.41954323114773684, -0.34839552707796595, -0.27906901614003315, 0.10374490237207393, -0.15036791640472313, -0.221213502586518, -0.06217611571707486, -0.017454816722156406, -0.2947440247990833, -0.3098681803880624, -0.1682566988923519, -0.22918480613597236, -0.06794768350432431, -0.06466518282763792, 0.22077482689128722, 0.23409859276689815, -0.08058668476069666, 0.3307250268810488, 0.2054697945418179, -0.16197102473926675, -0.005717017243182762, 0.1820817939469413, 0.40294424481002616, 0.12089917509452096, 0.006215132652660632, 0.2423565001958352, -0.05087931149958453, 0.17043062369839557, 0.051598599382631026, 0.13073346646614242, 0.3335473286002759, -0.4042233423850002, 0.21836749637805725, -0.40126625948751815, -0.06896418233146288], [7.070707070707071, -0.2316840559188152, 0.041092238386291766, 0.24532766901203912, -0.08772271453299184, 0.08481254346721649, -0.5336971370481578, 0.5851077018686156, 0.12888084429113275, -0.26234847558387125, -0.1063390683531153, -0.37171318585400603, 0.1812476625442168, -0.12131832101073992, -0.2149264307344716, -0.2161214099599918, -0.3822881555504437, -0.34190672188122184, -0.32115228494370474, 0.13512531797869198, -0.12603062659791972, -0.19415728817776862, -0.07592485203919229, -0.0611145656927235, -0.33189030157931554, -0.26671726398488194, -0.13668262701326023, -0.2190340167532006, -0.05606565999468606, -0.033934896755040425, 0.21051271937514332, 0.22214638280528246, -0.04985966234624522, 0.35055519314815053, 0.21888089872360486, -0.17343748870512685, -0.008433075471702597, 0.21402705309346826, 0.4157125407587543, 0.13975169437773555, 0.04003954867846873, 0.2545825325857403, -0.08872891086671184, 0.17295747514662613, 0.06285669818665374, 0.14903842621739505, 0.29471827862207456, -0.3970859948777962, 0.2438085826008402, -0.4490095369546362, -0.03991882142504366], [7.171717171717171, -0.2570304677984602, 0.004395107323649269, 0.2733072494353326, -0.11132961562350477, 0.043466775702945666, -0.5674126024093241, 0.6171776469537905, 0.12199926375069728, -0.25266232914318043, -0.09548063831683949, -0.3260285288509944, 0.13430441224224976, -0.1642446708747724, -0.22288415389840863, -0.24289272337151951, -0.43091668376030173, -0.3016617092509437, -0.3511712259805401, 0.12096850763138842, -0.10970650587980087, -0.16765259744388689, -0.0760172606342475, -0.09108469471922473, -0.3378339624135194, -0.24827311876203323, -0.10354817586375584, -0.2447956429504359, -0.036707990980704056, -0.012607244858174983, 0.25338350497835466, 0.27183882635158574, -0.03025317927952912, 0.3825771676039972, 0.20826963295369522, -0.1999722155947655, -0.017841126339853138, 0.2573016080503267, 0.38744782107818426, 0.12870806719915623, 0.03882799012280602, 0.21093761451311582, -0.11133327160881852, 0.14890813859950727, 0.06643135191485589, 0.10075769320044595, 0.34438877178347943, -0.39324957733419275, 0.2653017596760839, -0.48935434176718745, -0.049589641251788316], [7.2727272727272725, -0.28966966762443974, -9.869157383355504e-07, 0.24724075764491454, -0.10388203142117092, 0.03219251745606739, -0.527599428712034, 0.590886143072921, 0.09919441982372845, -0.26880008233814495, -0.1265307943767548, -0.2987348615711478, 0.09109584748723956, -0.14419934060322254, -0.19700290752755523, -0.23104747236401196, -0.479252750750703, -0.3125344737926895, -0.36434919307040914, 0.07599871463648235, -0.10389202348342243, -0.17137137527354485, -0.07622427111142943, -0.06503004725147438, -0.3193672841412798, -0.216215049840868, -0.1164873089318473, -0.2007994835624765, -0.026157921377998897, 0.009612561545179532, 0.2642426680377768, 0.27998471078408116, -0.07907204055095046, 0.4262353666059004, 0.25591037291969465, -0.20211316277074035, -0.016551616534145303, 0.26820408095129794, 0.36078789146393075, 0.17232461569960322, -0.0028218062394992707, 0.22216863766322392, -0.0699131308875118, 0.16634510946378073, 0.06810457225452343, 0.09153286068663505, 0.3414456482016705, -0.34722884591853037, 0.3121004876761477, -0.49139831254607885, -0.0012399495029424348], [7.373737373737374, -0.2430086981757074, -0.03402736389988732, 0.2839667989557576, -0.10259540461179215, 0.07153285885827904, -0.5420560968539162, 0.6330555099211652, 0.07656704743192579, -0.31163970287664394, -0.13262421243877565, -0.2764046117186733, 0.0847129522015115, -0.14266027878844528, -0.21230718532340756, -0.23709571727608902, -0.44243340936848763, -0.28296166098399755, -0.3636704830581366, 0.11576699200105811, -0.12838554803063876, -0.18196876532455739, -0.06665259018453237, -0.09517361751622352, -0.31511453161982517, -0.1786381922283446, -0.10142452560715888, -0.1916680284509823, 0.018189702677695277, 0.055886007930861986, 0.2554112425990049, 0.2856616764731803, -0.06977346626925442, 0.40017643414948445, 0.2462466760454758, -0.22121066732732464, -0.06415839275467533, 0.3125077575759886, 0.40029384348642894, 0.1785230037291675, 0.009310289538694838, 0.2585664504919341, -0.07647921386276019, 0.16596035235496412, 0.11253264543710907, 0.06851106234878357, 0.39047415239844213, -0.3464959237370604, 0.2636725713713565, -0.4820125092318126, 0.017599330863992475], [7.474747474747475, -0.19730743814042756, 0.012136826477577259, 0.31477830024512765, -0.09714772380459874, 0.06439718865256529, -0.5610807453371689, 0.6749404003765737, 0.09078730436803839, -0.3117800153069585, -0.08558295213663801, -0.23857311930706077, 0.09562251037454605, -0.181172692161109, -0.25859202307798035, -0.2743369943107428, -0.433204407709661, -0.24848278890348702, -0.39961195827166696, 0.08310064960783514, -0.17246967161877677, -0.14320560192285733, -0.09445162266131057, -0.08395097840978809, -0.32029227413913525, -0.1840559883998641, -0.08905720642287941, -0.16138303386462857, 0.030227681856311698, 0.02477950867259752, 0.25705125800688033, 0.333242266668444, -0.04501383405176771, 0.42000970164633883, 0.28270271617591414, -0.21395010201614273, -0.10506208342981371, 0.30013322484227783, 0.41031043533186556, 0.14294126769076904, 0.03617782556835228, 0.2502535715104841, -0.043410491469375374, 0.1537472548395046, 0.11238015655986404, 0.06573595500222557, 0.4140925262301902, -0.33482229132454855, 0.25342389839959434, -0.4785482232566313, -0.020801086585174575], [7.575757575757575, -0.18751006970753548, 0.04589840096375824, 0.2711464126671745, -0.08243099062175882, 0.09102758987058644, -0.5528650775108584, 0.6878934715601482, 0.08577853721783944, -0.2903308843458877, -0.1287736766131806, -0.19199325516556306, 0.11324753755257196, -0.2069737018405663, -0.2845369444462825, -0.3117526807204478, -0.4254983493598057, -0.2240252691238458, -0.44453395366463344, 0.044043721050524585, -0.20468883075738595, -0.171560364284088, -0.12091651062369778, -0.09207181990401393, -0.2813361037508388, -0.1914793651559059, -0.061904990828870556, -0.1211950593568362, 0.012303967891984683, 0.05659363330414652, 0.30257224223148915, 0.3685786681949475, -0.07300875754696103, 0.40870271846910056, 0.2724598148916579, -0.2523549391942691, -0.14093981200330263, 0.29792805532445576, 0.37109028486329515, 0.16743058381771095, 0.038159720899043244, 0.28220081154119087, -0.037420589774650695, 0.10993293517304109, 0.09804598363947697, 0.11388680015909913, 0.4510435533405622, -0.35500604936237024, 0.28643825358969827, -0.5242205975342311, 0.027128982358210412], [7.6767676767676765, -0.16437999440154322, 0.047914469667550565, 0.24426924307205478, -0.11388357471631078, 0.14055413007232714, -0.5506486153180269, 0.6891157832635593, 0.12662701450475503, -0.24126745806857153, -0.15825639038706524, -0.2080231849371052, 0.14696645180648799, -0.21035868073433267, -0.30020580957128506, -0.33573210483315136, -0.4726299286927315, -0.2407720001614303, -0.46989794556731906, 0.02379802721995839, -0.19013966803578972, -0.16855077280791464, -0.1123234972519573, -0.05257196878885602, -0.2521540897216764, -0.18966984270045556, -0.06124327676782041, -0.16319343205046874, 0.019984811435188935, 0.08319253683529843, 0.34008497968818796, 0.33202761371878164, -0.12091584303652891, 0.3719833954196821, 0.2566403992521477, -0.21103036331790223, -0.1690097707678583, 0.3198403946838681, 0.3230801494431094, 0.1434254794159225, 0.033518244015199476, 0.24932286816204102, -0.03506320998181409, 0.06800676936682307, 0.05764021593235995, 0.0903680095199577, 0.43105459243204486, -0.3544081470433134, 0.32610288130878884, -0.5364568912780611, 0.02405165699148814], [7.777777777777778, -0.1803414721177996, 0.019741695440366004, 0.2532377879424075, -0.13668575428540863, 0.0925604151618383, -0.5124030383828544, 0.6691009353935471, 0.1541667313108256, -0.26065103664912737, -0.15749919629296366, -0.18533466330626774, 0.12082907004847074, -0.219740690387275, -0.32954048717038553, -0.29471336084687066, -0.42819154452584557, -0.2644757860928701, -0.4556809081306907, -0.01448531449480605, -0.1520968406237253, -0.13122884920349942, -0.14619244868208647, -0.1008823675070751, -0.22376998079705473, -0.14325327234101132, -0.08251924186898857, -0.19027802110453373, -0.003867734786547637, 0.12252688803118097, 0.34185820155940605, 0.31894611223746433, -0.15900115193563077, 0.3329157926963747, 0.21438620754659388, -0.2054386285593068, -0.17086702795844805, 0.3628722923922322, 0.35064245316914155, 0.14633037605236787, 0.03804142300539573, 0.22921666378730132, -0.048879938072588204, 0.056289786221787715, 0.045048226167271464, 0.10872164286753863, 0.42491916405969216, -0.35092909889710294, 0.3701142739199811, -0.5382896687323424, -0.006582904950639311], [7.878787878787879, -0.22113591178007574, -0.016766432306394116, 0.2169864827401849, -0.17184188851113028, 0.05338023802874751, -0.5351685918988536, 0.6642071453023964, 0.13807798330737647, -0.2674691372797345, -0.19344918453115267, -0.17271078827618025, 0.09574256659509031, -0.2485210867572603, -0.366043051994214, -0.25514066164333316, -0.42137808941396104, -0.24080919204433737, -0.44567280748202154, -0.011869597239594791, -0.1458008936105506, -0.168543264850182, -0.14940068189395533, -0.1488202107638365, -0.2373360560045333, -0.17498836321662603, -0.11882207965376196, -0.18009438741950295, -0.017852877610038308, 0.1434493031857701, 0.306354577052664, 0.27363134169786907, -0.12185884767716612, 0.33730058234262517, 0.19592101342587603, -0.24786672767003012, -0.1535600794386878, 0.3874001704464011, 0.36528950053486126, 0.16976790799932184, 0.03625495422009157, 0.21961037408690076, -0.09608251202750276, 0.009046305464435585, 0.006975976880371222, 0.10937042423729847, 0.43884645477597634, -0.31645344705400436, 0.38574244398836555, -0.5660037551450238, -0.006519121871249188], [7.979797979797979, -0.22478610988636097, 0.03114060224199277, 0.23483055317733348, -0.21881147145168978, 0.07285450517810951, -0.555186586220565, 0.6859215036371189, 0.1584520483435017, -0.2626507812931464, -0.1500753489584878, -0.1417729845006265, 0.05097728412725092, -0.26070231136944966, -0.3565677789544724, -0.22387891214417843, -0.3827205284594137, -0.21810389172079925, -0.41765307409574765, -0.010408988552296109, -0.09660118049818056, -0.16419789112923733, -0.1879455232664991, -0.10779525235010694, -0.24477339692302252, -0.13550927345003613, -0.13908638642977147, -0.16337902007474114, -0.020103530059919425, 0.09924610168191908, 0.26583312761991346, 0.2654604874270064, -0.12054972145800513, 0.35980173504186136, 0.14870059530212812, -0.2712854735064967, -0.17160822827878797, 0.3580221617124241, 0.3475325797794228, 0.21121712339364088, 0.07429925001628623, 0.21093239454757684, -0.08079956707697053, 0.010710740541508175, 0.05192654795874195, 0.10429858465850181, 0.4023573304744617, -0.3590586005757868, 0.3436962648092367, -0.5735660727572863, -0.037742297260020555], [8.080808080808081, -0.22391622056254157, 0.051844951810907085, 0.2840496221288582, -0.17488591303647585, 0.11192091022376464, -0.5743479155410843, 0.6648925806088618, 0.13236391048869597, -0.25342289007764407, -0.13942080578781296, -0.10862508213531524, 0.08570132456462407, -0.24403245820388533, -0.3944591926552041, -0.2107033120289819, -0.35735042621587976, -0.22894507860562108, -0.39782735070523245, 0.009937268853652967, -0.07874868195446089, -0.13904674993887706, -0.19630894958700468, -0.07825546111539106, -0.2931913375731666, -0.10318657442961468, -0.17683649101387555, -0.16356532100368257, -0.048032380717346626, 0.08172003893861052, 0.21677640447306495, 0.22884933748874897, -0.11642576423579162, 0.32971773742064875, 0.15670286457508234, -0.2453662967987298, -0.16920591735974477, 0.3329298745635124, 0.2983601081227922, 0.21928419523128756, 0.07677457419359263, 0.2400448281185705, -0.031720772749252314, 0.05226647403755406, 0.03692363272738344, 0.105999221310802, 0.3613221675213528, -0.39616414337944633, 0.35189088909891414, -0.5997070661867672, -0.05807107290570669], [8.181818181818182, -0.2650702032622525, 0.0878425075054734, 0.26262482061041537, -0.19021050001885545, 0.11116854260142293, -0.6142474883704637, 0.6357769960818282, 0.1028800180686757, -0.2926294518543124, -0.14326765287092608, -0.06632784211176995, 0.05985354912012958, -0.2757086904752112, -0.36057760173859377, -0.20080967892819643, -0.3435506807463242, -0.22425685818058286, -0.44600597732284514, 0.0351732121140675, -0.05221379791560937, -0.16241515678410126, -0.15207069132180517, -0.06248073629164706, -0.318747305195024, -0.11394803122149937, -0.20132538157395774, -0.1862280313022088, -0.06118392637804483, 0.12146317560467793, 0.2553568183019599, 0.19834128751160712, -0.14604486325226934, 0.3244825811416081, 0.13259176188912092, -0.20689670971000024, -0.15045326353718413, 0.2861150537148089, 0.3459386450990858, 0.23126101669814886, 0.037724663303220336, 0.256225584214561, -0.0006194463995672569, 0.0042644127330459525, 0.05729420355578714, 0.07589980158118606, 0.38074961742623425, -0.39619162602789787, 0.37746126979553696, -0.6265050857877229, -0.06125755332793632], [8.282828282828282, -0.26226668093044775, 0.0765597702883373, 0.2887160965663004, -0.2292540395882945, 0.06819534164097242, -0.6347453185125702, 0.6174306879567721, 0.12127687815247103, -0.2704491494759596, -0.11311743577997123, -0.03491739478678656, 0.017394391071771098, -0.27324410330463067, -0.3593163591611214, -0.19088099147773419, -0.2950150823245169, -0.22746704608943863, -0.4154576493383063, 0.052501710512773206, -0.07589931494348476, -0.1457404988789243, -0.19956152090466078, -0.0808643432937859, -0.3216585202412714, -0.15731137811707366, -0.19988960346882653, -0.17310441350914685, -0.054658199843721104, 0.13843854934712316, 0.231650950858381, 0.18318255630992242, -0.13782506754617468, 0.3497662846926524, 0.17031764761332463, -0.17775612665259843, -0.13851210612383363, 0.3288097092108815, 0.3230772908515982, 0.20816465253384334, 0.027885388351047563, 0.2561261694758283, -0.024182001337900227, 0.018004541076178014, 0.06369184098355277, 0.05331387091382117, 0.34238309479289736, -0.4190007333300067, 0.3836051528048284, -0.6592438972380499, -0.04706822134727782], [8.383838383838384, -0.21305087727939492, 0.051643172271509774, 0.24336881333291424, -0.2414213400221475, 0.02703907807596031, -0.6118548393084077, 0.624754149641956, 0.11294640704912723, -0.291667656093364, -0.09324670457232595, -0.056411026270824303, 0.059051086008193414, -0.24962653689026543, -0.3334538454551723, -0.19259555756193197, -0.3259218042751811, -0.23944063696872406, -0.42123333643325167, 0.03359108062366428, -0.04785041611594975, -0.1746900255537291, -0.15598969178191463, -0.04876974921956342, -0.3345318185744325, -0.1786740661691629, -0.20015803751413744, -0.13099640773519988, -0.01056477075248885, 0.15040392374033354, 0.22367824324111904, 0.15218216937022888, -0.18699777919765062, 0.39140182954626074, 0.13419245335923177, -0.15475089702799175, -0.16677180399437636, 0.37822398945521674, 0.3094780289946566, 0.18088175749835392, 0.03326206233961279, 0.24076551547836839, -0.047056686184416274, 0.0496217481418443, 0.045599836019360296, 0.04681630246654929, 0.3267501189429494, -0.4071675687773048, 0.4319493650770804, -0.6740054381823605, -0.021544967109633117], [8.484848484848484, -0.22354728410357197, 0.03158697416598, 0.22662240398513492, -0.25301339411800605, -0.012340106070990758, -0.6276669500368832, 0.6210067723721455, 0.08246755179563678, -0.2706481070003797, -0.06879097028042647, -0.045824451945211064, 0.056389598938223824, -0.22270847145988726, -0.3450066666906751, -0.2338685768418067, -0.36318190192690347, -0.23901000162197142, -0.416574440924388, 0.0013656689621114118, -0.07829012723684534, -0.19644394938415555, -0.1246690511299792, -0.08104624017287226, -0.30732630790860377, -0.14948894287180017, -0.2413896675541, -0.1279583834313585, -0.021348027341014698, 0.17192465938805285, 0.23352864707182916, 0.10508437779152807, -0.20512642759045385, 0.4135772250429954, 0.08430947119116627, -0.19790473310553552, -0.1986804102181854, 0.32879186042474173, 0.27541893386144994, 0.16884790021641452, 0.07015889655724414, 0.2883458364520619, -0.040447261527679725, 0.03436629293205152, 0.06498402891408268, 0.056953848282879964, 0.3197193188538704, -0.39593653256785166, 0.48083106160066635, -0.6819634662956767, -0.03149780668526557], [8.585858585858587, -0.23998763993171515, 0.06727652700648157, 0.27107768308784064, -0.23647102532605993, -0.04221421824631233, -0.6490601344850435, 0.621268628788417, 0.07150050932346079, -0.29415637300154224, -0.08627459242226045, -0.0697247284735131, 0.014808206157921923, -0.2602784064001306, -0.3893795259411791, -0.19725025190236767, -0.345333303935027, -0.2321292161033467, -0.4020716309070712, 0.012745823227034905, -0.055685985761563445, -0.21178973577632615, -0.16120947623536686, -0.06207846300456865, -0.3513885181663078, -0.17405823812159923, -0.22526614765389366, -0.14835240124352198, -0.003078213400715745, 0.20867202285841113, 0.2278167027684981, 0.11034564846490019, -0.160483056752237, 0.4204863720187441, 0.1157616308923677, -0.15791500257887395, -0.1505574673706082, 0.29636491708769136, 0.24014547751533907, 0.1863176212146087, 0.1040300020654413, 0.3366225068272833, -0.03389417387933884, 0.025471679915703666, 0.07795816209006286, 0.07917499124773873, 0.3693584752270092, -0.363907855383201, 0.43219675325668017, -0.6464183065331132, -0.08050371505571888], [8.686868686868687, -0.20944258619878717, 0.06457492606330367, 0.2847293872133185, -0.26202193239544397, -0.004477817713248254, -0.6034253738743239, 0.6199927831626361, 0.03135285163917106, -0.3112271952810167, -0.11842951370633398, -0.03826012903644112, 0.0011733727998849645, -0.3052749618428011, -0.4296284761373161, -0.17958846934057096, -0.3322886015153816, -0.21400728835138422, -0.3947797768122063, -0.015208274555299762, -0.04795851830488972, -0.17841709250160395, -0.170298565175639, -0.06985654303280153, -0.31719657060553397, -0.16861469564788314, -0.24391212714315938, -0.11797324687084845, 0.0080892636162193, 0.18417326482020496, 0.1966283138606106, 0.15379003509964184, -0.12444108543129831, 0.38487627155354903, 0.16333635770257096, -0.11568026869555366, -0.12892593571013106, 0.2991376152361943, 0.2629967486163432, 0.22700891804458903, 0.11973918293501844, 0.3575865828770683, -0.01983410071862217, -0.01609517537894452, 0.08354313794172354, 0.06930849955771184, 0.4188216381002193, -0.3595681919642873, 0.44223106585159483, -0.6222862583112448, -0.1109625335919365], [8.787878787878787, -0.1840076867405518, 0.0809026307649165, 0.2949142478265077, -0.24587383501807547, 0.03984443250694461, -0.5534774587610946, 0.6479155101274003, 0.013607289627829904, -0.34583326696273076, -0.16699436344377785, -0.04181338465061538, 0.009228655123810194, -0.2664473078808817, -0.43644970537105005, -0.17394526609609984, -0.32633369318764366, -0.22016747520439517, -0.4323793778484645, -0.040769781962236164, 0.001236989910320542, -0.1920316788857372, -0.14971022384790333, -0.06822480319479657, -0.3356883183526016, -0.17543735678893665, -0.20286038896065658, -0.07861912005692057, -0.03364472017111712, 0.14843127117853097, 0.1873632223073978, 0.19391951068847968, -0.16010093194946573, 0.34041930754079586, 0.1873875677351136, -0.1289443268672996, -0.15356411830290398, 0.2508240839872388, 0.2963158196948197, 0.19930486930107388, 0.08174407734054351, 0.3310301427446353, -0.04984091800019852, -0.010898745283904006, 0.10090477519295091, 0.028672346637224018, 0.4173126759817511, -0.3854285912391035, 0.42969612062016216, -0.5948776834847582, -0.06558866561039886], [8.88888888888889, -0.20270104258170082, 0.11147549150859501, 0.33773271597287235, -0.28602454663888927, 0.003408046304976549, -0.569742266621766, 0.6369290991643698, 0.05255510319542715, -0.3652596392108437, -0.20628939071570185, -0.06448510106951438, -0.023342273402007577, -0.2949769054831552, -0.4070611790932388, -0.20640099406281393, -0.3029123908202307, -0.24992758498765155, -0.45920309811421206, -0.016239871040141685, 0.030375150411636055, -0.2341617226488746, -0.14262984887495045, -0.025268371973925403, -0.29656337266550326, -0.1470366933072848, -0.15938624648883207, -0.12216263012900669, -0.02280514818602178, 0.17669026924622622, 0.14461446872078507, 0.19279963156104624, -0.15556528720525373, 0.3238659504675963, 0.2359261109485546, -0.08087197746520433, -0.1391856895203182, 0.27694974576526, 0.26342111834851484, 0.1896598758429713, 0.12572340126081552, 0.3402497858011465, -0.057330363809801846, -0.031135280850457102, 0.06008083078073633, -0.003260558415073986, 0.44217026977784757, -0.3919697718395208, 0.42799676717480445, -0.5730368574533953, -0.0501543706684961], [8.98989898989899, -0.1892973742854733, 0.08677354197356742, 0.3059006570525337, -0.2779382718722041, 0.039280743573361296, -0.5722301109417723, 0.6637826169517874, 0.09678229469171815, -0.3385002823672228, -0.22898422062259796, -0.10103578777804503, -0.055675488565734225, -0.2686131094886128, -0.4476477733306997, -0.24025777029311135, -0.29418955488250914, -0.2465749674716353, -0.4555594211786605, -0.04953655165021751, 0.03730546384880591, -0.1985577645630469, -0.10513865292860262, -0.06959789527548586, -0.2869351333145114, -0.19271453827843335, -0.16409410197253987, -0.08115855597481807, 0.004494548912273973, 0.1629161844356501, 0.10466427224312064, 0.18859111945663687, -0.18878929967956773, 0.29618543278414744, 0.21071385138945034, -0.09814684584967455, -0.12658329540789645, 0.25337993698162237, 0.2943867546947167, 0.20508871824335229, 0.16012797974389692, 0.31621231590393384, -0.05857130248394482, -0.007502285584204356, 0.023851286397323007, -0.043368235945161815, 0.4232590523665034, -0.40467575599098954, 0.38653697424755307, -0.6164774208339491, -0.08574078655301362], [9.09090909090909, -0.18525691675540165, 0.0447308858705999, 0.2576829754551858, -0.317251721405349, 0.06499657181691688, -0.539265144942711, 0.6999294432279323, 0.1125293704361287, -0.3311154779672154, -0.21733204307863363, -0.13656440326151179, -0.07126271938626341, -0.2537290956985587, -0.4815547651698178, -0.2623516029312572, -0.30868022718055077, -0.2660681588346937, -0.4424369156957944, -0.0851560351908833, 0.050394565256342144, -0.1966356876783448, -0.12807574413389905, -0.11645312654201778, -0.25792347124879156, -0.19130896782350637, -0.17619283699642208, -0.09734335160706062, -0.03689156577594918, 0.2010194233705946, 0.07900210742397903, 0.1679338223853658, -0.1908078488129534, 0.3199311779774714, 0.1668776761255799, -0.05972945579277285, -0.15993386544379593, 0.22857309051215416, 0.2618891108608109, 0.19685558923376806, 0.11693884845276853, 0.29149290084836654, -0.043541359382088474, -0.05499478150894078, 0.0032140066081118336, -0.03690822419349908, 0.45654395212782434, -0.3561635069356081, 0.33909923432783856, -0.5853102554200194, -0.07123261812886496], [9.191919191919192, -0.2055775416674002, 0.06800694637217142, 0.22669019306860305, -0.3124262706589503, 0.08361373326248221, -0.5793246303145301, 0.6652744874050194, 0.08209224531631644, -0.28394445445777017, -0.17257412070222472, -0.16689402768990527, -0.08912276581094093, -0.23243323825811443, -0.4358349919107377, -0.24706329965579, -0.26090350813720836, -0.2698676117734273, -0.4747922300739987, -0.11144003732255117, 0.04829004930087883, -0.21180669692170367, -0.16837368535614788, -0.06974352509481212, -0.24646304671052002, -0.14859046186396507, -0.1662710923311241, -0.06509371978559164, -0.035196199617573115, 0.24284117331240235, 0.12250905222177086, 0.19283723124165333, -0.18621457884872833, 0.34260224037308734, 0.18409338992401142, -0.03473057606857275, -0.16789598769596076, 0.23977738236214474, 0.23006157744476866, 0.15589629390157808, 0.11637277909094194, 0.3384981975152857, -0.0798930443642355, -0.024873470661572455, -0.002180600071028979, -0.01815929281310093, 0.46421603008945667, -0.33136810871354627, 0.3631264154086274, -0.6324662989111081, -0.09917415578205542], [9.292929292929292, -0.24449875154915562, 0.11414669412253198, 0.22887737285106202, -0.31045109988782954, 0.11925307227850496, -0.578513166144587, 0.6768099373193371, 0.08466012139042013, -0.2647595176510816, -0.13192688381793224, -0.16711377622596635, -0.09602325985846043, -0.20103194445496717, -0.4019460934203169, -0.25876345878135526, -0.2743277850093867, -0.25180551739772006, -0.4708238202412613, -0.13597232218207086, 0.012369598138786672, -0.17554924224829055, -0.15314958617562127, -0.07958634538418999, -0.19927961632894015, -0.10273554260621517, -0.1410736585478768, -0.0156323840355668, -0.036299707626684156, 0.2836462654718852, 0.11836299839134296, 0.19123875271604876, -0.14933958663488078, 0.3403232231129655, 0.22401649780804103, -0.06428432143687007, -0.12266187302398979, 0.21267528296057442, 0.2146475925132582, 0.1233444157046164, 0.0793933964234422, 0.3032880550718518, -0.05124728041856241, -0.010711307524033946, -0.03852365601447039, -0.006718576845349539, 0.4190363504671138, -0.340119957612008, 0.37201077429535223, -0.5857042649554638, -0.1474192726435244], [9.393939393939394, -0.2632347217615813, 0.15952716753929824, 0.22845957144142906, -0.3308276881012538, 0.09234084756986113, -0.5451295095090382, 0.6781330925610084, 0.06574103179967611, -0.265623291854832, -0.08541748099657304, -0.19649476948306985, -0.11477385650748635, -0.1959945239961324, -0.36796499836327196, -0.2627717345616116, -0.23250784421625292, -0.2441514191717042, -0.465477453831802, -0.18576698187540458, -0.004719384827785136, -0.1682066217665603, -0.202629278778114, -0.0805547626592027, -0.17300067998826654, -0.0890130220055365, -0.10013524857229472, 0.033708026871468066, -0.021164107925932353, 0.3253417602511104, 0.16271146255380523, 0.23686121171210858, -0.17703286438455035, 0.38296829489099876, 0.24570585742456014, -0.07999689293321395, -0.07672601648611932, 0.2250544666343242, 0.25220375119504046, 0.1175569031541869, 0.08319640472387801, 0.32938570365928815, -0.09056428276583806, -0.02517683481291312, -0.07623574619161991, 0.03250098831664836, 0.4153463877223243, -0.3428620832794926, 0.3553073105686263, -0.598319722641292, -0.18189265849452035], [9.494949494949495, -0.2675368087566547, 0.1585770727276882, 0.2585086919983443, -0.33525478300144396, 0.09427464549100834, -0.5181172101676889, 0.7270596564531853, 0.07127587123281397, -0.2737279105450619, -0.10165537363245317, -0.16975782218901975, -0.117496305621984, -0.23809442742876172, -0.407669122336044, -0.3010640982281844, -0.22796558548330448, -0.22899494163440623, -0.48537219106604823, -0.13920295782525954, 0.022842241325394242, -0.12142688597441234, -0.23754273966128125, -0.03758516146409201, -0.16563897972543107, -0.05797049399387068, -0.08804779876566204, 0.08262926651533947, -0.013831191168528857, 0.2820630711648402, 0.1379919155049965, 0.27746207218557406, -0.19861656017768514, 0.40694069585051895, 0.21679536177723888, -0.05844505467628992, -0.10497504466606641, 0.18679858484512177, 0.260113010420199, 0.16131169014312313, 0.09065317247123418, 0.35022826056056416, -0.1131902604818374, 0.01405294454324809, -0.06311444197383427, 0.040493918340294636, 0.381455516811743, -0.3608579971462246, 0.3629390122957747, -0.5656118139458206, -0.13414609737484456], [9.595959595959595, -0.251642801734035, 0.1717962791709637, 0.2944523231428354, -0.3813881309884873, 0.07860799000865287, -0.48651717519219134, 0.6853421852515356, 0.07482885196958013, -0.22844006833935673, -0.08601506486553469, -0.19409466705533368, -0.11325840863497558, -0.25120906230103, -0.3891050257461818, -0.2690142794934904, -0.24279709027898896, -0.18734691748221685, -0.4527054851513038, -0.09028352983277882, 0.036145341599936, -0.11447285122362286, -0.2451751493704397, -0.021238661542295954, -0.17703412444250177, -0.08796152764687895, -0.10765334035345656, 0.13014404261835708, -0.04661188506670976, 0.26345558338904357, 0.10855907826385866, 0.23697392666478728, -0.15448469414293142, 0.36312241302427684, 0.2216303303382828, -0.008722112518008654, -0.15425484893308647, 0.2041399670588077, 0.24914452257746286, 0.17808212458932166, 0.04848524920869128, 0.3099073926303532, -0.1339141464407951, -0.018025543987481865, -0.07360058199561638, 0.043586051271608445, 0.40558719347727573, -0.37451497731863137, 0.3251002859262431, -0.5312590569395645, -0.16043685817451894], [9.696969696969697, -0.2762170499522632, 0.19509578115476295, 0.26574792636686995, -0.3714878284996372, 0.0944852829445211, -0.5313621775506463, 0.7064891778731515, 0.07134014485941928, -0.2640178161690206, -0.10686948676624208, -0.2178317968483108, -0.06679886627575096, -0.29463932408546256, -0.4293197231657592, -0.31635885600893643, -0.20572410841046296, -0.21675780521183957, -0.4070637292533401, -0.0680844476916567, -0.003329911164445934, -0.1261264604493927, -0.250593109134638, -0.05344939492321002, -0.14009783084384123, -0.046053263564980296, -0.07510466892071396, 0.08193799741579888, -0.07330379728948305, 0.22821678376891572, 0.08856788941740447, 0.25387352503748467, -0.167745123383862, 0.3578977416420829, 0.2630959337503712, -0.01752902972134918, -0.14758836074796874, 0.15987378630077156, 0.20786382416710747, 0.22694114274771282, 0.0832153736102498, 0.3152806941518707, -0.08787785616102818, 0.010819967516995141, -0.11524443226605052, 0.04063741378906506, 0.36192522734173904, -0.33225482764420067, 0.305875914040934, -0.5167173844009171, -0.13356945954758992], [9.797979797979798, -0.26210692408219305, 0.23533673147955958, 0.2594748105116363, -0.4214391525521112, 0.07276430833118352, -0.5132297987633969, 0.6838046195791683, 0.09812660429275077, -0.2618967855835865, -0.14178256441314432, -0.203566053176605, -0.0662570371784948, -0.322279549491652, -0.4348875887431274, -0.29258821960926223, -0.24274106196786174, -0.20133238207694845, -0.4306772158432322, -0.0637181494342958, 0.04475987066961164, -0.14537359451190401, -0.2925470094662981, -0.00865406353796088, -0.1861961970208929, -0.048223062142776794, -0.11673550322259868, 0.07612347831219764, -0.09426063377448449, 0.2688670622046793, 0.07385659470318488, 0.2840412426907027, -0.21279381178367335, 0.3263868532342302, 0.2829609909215692, -0.052751499664191154, -0.1551905998654157, 0.14950291530458282, 0.1767229852943466, 0.18647633762563276, 0.11254425637553964, 0.3622418323776341, -0.054237333113540946, -0.03136065028725159, -0.10019690510192832, 0.03339880079685174, 0.3518346147781527, -0.2888351393603103, 0.3127163518097775, -0.5181735623959396, -0.11848915963389368], [9.8989898989899, -0.2920945633603527, 0.2015614233543796, 0.25163656141789525, -0.42125779318355805, 0.07301095170685622, -0.4669004354826172, 0.7332987622186244, 0.1368213014614056, -0.2229818401641588, -0.18808935806674307, -0.1540429507466985, -0.11160644915479347, -0.3471782603537462, -0.3884784003415803, -0.25675671187891586, -0.24488732613150857, -0.16917846838894238, -0.4654024474062475, -0.09327136607039382, 0.031239679831067804, -0.15717752143821168, -0.33740198932685767, 0.023003504204131525, -0.22582086930827774, -0.034631869005506064, -0.13525790168758922, 0.08377005408570706, -0.07747127058274075, 0.2765873506985946, 0.08407644966703226, 0.29743932975093984, -0.2255602354973098, 0.3541053343968374, 0.26028426212245587, -0.004536625685332613, -0.19896479560955516, 0.17809539277912845, 0.19305239664765944, 0.1387261792386659, 0.0973761619464177, 0.32381704767077524, -0.07643283456657071, -0.07947817525595494, -0.13921338798733773, 0.05507413248637243, 0.3408955052873333, -0.281345363878944, 0.32148632268155947, -0.5261872628200067, -0.0823311865923424], [10.0, -0.27633208280745436, 0.19214955559113572, 0.20710829912608944, -0.4210851810143966, 0.053338703662131726, -0.4468056898253924, 0.7187715536130703, 0.16980223830322005, -0.2005502248728878, -0.17829298381561662, -0.1497919616524569, -0.12742394298218304, -0.3030034235386833, -0.3809170317379089, -0.23231107520566516, -0.25685419873169396, -0.21673327427471378, -0.4956534099252743, -0.06105031876190226, 0.059096149508489265, -0.16061961999642946, -0.33986814732814197, 0.05230611165387963, -0.22018928632721152, -0.042774496991128515, -0.11042623546429023, 0.08541854495819717, -0.05022611374684295, 0.23894468649730582, 0.08189725322594626, 0.33575195764452026, -0.18458262886232477, 0.31651704509162515, 0.2516797837734582, 0.011094703152224324, -0.16858516024009856, 0.20904477284842427, 0.15323727222923111, 0.13803014892731522, 0.14399285914480997, 0.3643967255185231, -0.06615739558683276, -0.10198229837097632, -0.14987484958917435, 0.031080530158347268, 0.3156268320225146, -0.2758417494182701, 0.34398189229017057, -0.5107667888820514, -0.12144728396834698]]}, \"id\": \"el913299767760\"});\n",
" }(mpld3);\n",
"}else if(typeof define === \"function\" && define.amd){\n",
" // require.js is available: use it to load d3/mpld3\n",
" require.config({paths: {d3: \"https://mpld3.github.io/js/d3.v3.min\"}});\n",
" require([\"d3\"], function(d3){\n",
" window.d3 = d3;\n",
" mpld3_load_lib(\"https://mpld3.github.io/js/mpld3.v0.2.js\", function(){\n",
" \n",
" mpld3.register_plugin(\"voronoi_highlightlines\", VoronoiHighlightLines);\n",
" VoronoiHighlightLines.prototype = Object.create(mpld3.Plugin.prototype);\n",
" VoronoiHighlightLines.prototype.constructor = VoronoiHighlightLines;\n",
" VoronoiHighlightLines.prototype.requiredProps = [\"line_ids\"];\n",
" VoronoiHighlightLines.prototype.defaultProps = {alpha_bg:0.3, alpha_fg:1.0}\n",
" function VoronoiHighlightLines(fig, props){\n",
" mpld3.Plugin.call(this, fig, props);\n",
" };\n",
"\n",
" VoronoiHighlightLines.prototype.draw = function(){\n",
" var alpha_fg = this.props.alpha_fg;\n",
" var alpha_bg = this.props.alpha_bg; \n",
" \n",
" // get the data for the voronoi mesh\n",
" data = new Array();\n",
" for(var i=0; i<this.props.line_ids.length; i++){\n",
" var line_instance = mpld3.get_element(this.props.line_ids[i], this.fig);\n",
" \n",
" for (j=1; j<line_instance.data.length; j++){\n",
" var obj = {}\n",
" obj.x = line_instance.data[j][line_instance.props.xindex]\n",
" obj.y = line_instance.data[j][line_instance.props.yindex]\n",
" obj.line_instance = line_instance\n",
" obj.line_id = this.props.line_ids[i]\n",
" obj.label_id = i\n",
" obj.fig = this.fig\n",
" data.push(obj)\n",
" }\n",
" }\n",
"\n",
" var ax = mpld3.get_element(this.props.line_ids[0], this.fig).ax\n",
"\n",
" // we hide the transform from data coordinates to svg\n",
" // coordinates in the voronoi\n",
" var transform_x = function(d){return ax.x(d)+ax.position[0]};\n",
" var transform_y = function(d){return ax.y(d)+ax.position[1]};\n",
" \n",
" var voronoi = d3.geom.voronoi()\n",
" .x(function(d) { return transform_x(d.x); })\n",
" .y(function(d) { return transform_y(d.y); }) \n",
" .clipExtent([ax.position, [ax.position[0]+ax.width, ax.position[1]+ax.height]]);\n",
"\n",
" \n",
"\n",
" var voronoiGroup = this.fig.canvas.append(\"svg:g\")\n",
" .attr(\"class\", \"voronoi\");\n",
" \n",
" voronoiGroup.selectAll(\"path\")\n",
" .data(voronoi(d3.nest()\n",
" .key(function(d) { return d.x + \",\" + d.y; })\n",
" .rollup(function(v) { return v[0]; })\n",
" .entries(data)\n",
" .map(function(d) { return d.values; })))\n",
" .enter().append(\"path\")\n",
" .attr(\"d\", function(d) { \n",
" var ret = \"M\" + d.join(\" L\") + \"Z\";\n",
" return ret; })\n",
" .datum(function(d) {return d.point; })\n",
" .on(\"mouseover\", mouseover)\n",
" .on(\"mouseout\", mouseout);\n",
" \n",
" \n",
" function mouseover(d) {\n",
" d3.select(d.line_instance.path[0][0])\n",
" .style(\"stroke-opacity\", alpha_fg); \n",
" }\n",
"\n",
" function mouseout(d) {\n",
" d3.select(d.line_instance.path[0][0])\n",
" .style(\"stroke-opacity\", alpha_bg); \n",
" } \n",
" };\n",
" \n",
" mpld3.draw_figure(\"fig_el913299767760296751749\", {\"axes\": [{\"xlim\": [0.0, 10.0], \"yscale\": \"linear\", \"axesbg\": \"#FFFFFF\", \"texts\": [], \"zoomable\": true, \"images\": [], \"xdomain\": [0.0, 10.0], \"ylim\": [-0.80000000000000004, 0.80000000000000004], \"paths\": [], \"sharey\": [], \"sharex\": [], \"axesbgalpha\": null, \"axes\": [{\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"bottom\", \"nticks\": 6, \"tickvalues\": null}, {\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"left\", \"nticks\": 10, \"tickvalues\": null}], \"lines\": [{\"color\": \"#0000FF\", \"yindex\": 1, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132136114032\"}, {\"color\": \"#0000FF\", \"yindex\": 2, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138851280\"}, {\"color\": \"#0000FF\", \"yindex\": 3, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100224624\"}, {\"color\": \"#0000FF\", \"yindex\": 4, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100222256\"}, {\"color\": \"#0000FF\", \"yindex\": 5, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100222192\"}, {\"color\": \"#0000FF\", \"yindex\": 6, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100221680\"}, {\"color\": \"#0000FF\", \"yindex\": 7, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135813136\"}, {\"color\": \"#0000FF\", \"yindex\": 8, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812688\"}, {\"color\": \"#0000FF\", \"yindex\": 9, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135811600\"}, {\"color\": \"#0000FF\", \"yindex\": 10, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135811760\"}, {\"color\": \"#0000FF\", \"yindex\": 11, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135811184\"}, {\"color\": \"#0000FF\", \"yindex\": 12, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135814416\"}, {\"color\": \"#0000FF\", \"yindex\": 13, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135813744\"}, {\"color\": \"#0000FF\", \"yindex\": 14, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135813392\"}, {\"color\": \"#0000FF\", \"yindex\": 15, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812848\"}, {\"color\": \"#0000FF\", \"yindex\": 16, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812912\"}, {\"color\": \"#0000FF\", \"yindex\": 17, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812144\"}, {\"color\": \"#0000FF\", \"yindex\": 18, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132136089456\"}, {\"color\": \"#0000FF\", \"yindex\": 19, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138733232\"}, {\"color\": \"#0000FF\", \"yindex\": 20, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138731856\"}, {\"color\": \"#0000FF\", \"yindex\": 21, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138733392\"}, {\"color\": \"#0000FF\", \"yindex\": 22, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138733712\"}, {\"color\": \"#0000FF\", \"yindex\": 23, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138732976\"}, {\"color\": \"#0000FF\", \"yindex\": 24, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138766032\"}, {\"color\": \"#0000FF\", \"yindex\": 25, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138764496\"}, {\"color\": \"#0000FF\", \"yindex\": 26, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138764848\"}, {\"color\": \"#0000FF\", \"yindex\": 27, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138764912\"}, {\"color\": \"#0000FF\", \"yindex\": 28, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138767824\"}, {\"color\": \"#0000FF\", \"yindex\": 29, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135913392\"}, {\"color\": \"#0000FF\", \"yindex\": 30, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135910352\"}, {\"color\": \"#0000FF\", \"yindex\": 31, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135910448\"}, {\"color\": \"#0000FF\", \"yindex\": 32, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135767792\"}, {\"color\": \"#0000FF\", \"yindex\": 33, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135769200\"}, {\"color\": \"#0000FF\", \"yindex\": 34, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135767856\"}, {\"color\": \"#0000FF\", \"yindex\": 35, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135768624\"}, {\"color\": \"#0000FF\", \"yindex\": 36, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135769296\"}, {\"color\": \"#0000FF\", \"yindex\": 37, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138926224\"}, {\"color\": \"#0000FF\", \"yindex\": 38, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138925520\"}, {\"color\": \"#0000FF\", \"yindex\": 39, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137464400\"}, {\"color\": \"#0000FF\", \"yindex\": 40, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137464752\"}, {\"color\": \"#0000FF\", \"yindex\": 41, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465104\"}, {\"color\": \"#0000FF\", \"yindex\": 42, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465456\"}, {\"color\": \"#0000FF\", \"yindex\": 43, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465808\"}, {\"color\": \"#0000FF\", \"yindex\": 44, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465520\"}, {\"color\": \"#0000FF\", \"yindex\": 45, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135778992\"}, {\"color\": \"#0000FF\", \"yindex\": 46, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135779344\"}, {\"color\": \"#0000FF\", \"yindex\": 47, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135779696\"}, {\"color\": \"#0000FF\", \"yindex\": 48, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135780048\"}, {\"color\": \"#0000FF\", \"yindex\": 49, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135780400\"}, {\"color\": \"#0000FF\", \"yindex\": 50, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135780752\"}], \"markers\": [], \"id\": \"el913299769072\", \"ydomain\": [-0.80000000000000004, 0.80000000000000004], \"collections\": [], \"xscale\": \"linear\", \"bbox\": [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], \"height\": 640.0, \"width\": 960.0, \"plugins\": [{\"line_ids\": [\"el9132136114032\", \"el9132138851280\", \"el9132100224624\", \"el9132100222256\", \"el9132100222192\", \"el9132100221680\", \"el9132135813136\", \"el9132135812688\", \"el9132135811600\", \"el9132135811760\", \"el9132135811184\", \"el9132135814416\", \"el9132135813744\", \"el9132135813392\", \"el9132135812848\", \"el9132135812912\", \"el9132135812144\", \"el9132136089456\", \"el9132138733232\", \"el9132138731856\", \"el9132138733392\", \"el9132138733712\", \"el9132138732976\", \"el9132138766032\", \"el9132138764496\", \"el9132138764848\", \"el9132138764912\", \"el9132138767824\", \"el9132135913392\", \"el9132135910352\", \"el9132135910448\", \"el9132135767792\", \"el9132135769200\", \"el9132135767856\", \"el9132135768624\", \"el9132135769296\", \"el9132138926224\", \"el9132138925520\", \"el9132137464400\", \"el9132137464752\", \"el9132137465104\", \"el9132137465456\", \"el9132137465808\", \"el9132137465520\", \"el9132135778992\", \"el9132135779344\", \"el9132135779696\", \"el9132135780048\", \"el9132135780400\", \"el9132135780752\"], \"alpha_fg\": 1.0, \"type\": \"voronoi_highlightlines\", \"alpha_bg\": 0.2}], \"data\": {\"data01\": [[0.0, 0.0043404941790965434, 0.027828921544984855, -0.008290926441633917, -0.049006630632901706, -0.043933030408504284, 0.005252942343432332, -0.009015352818560463, -0.04113745858660054, 0.04588430789564042, 0.015242730280798778, -0.04722677224742309, 0.023260350424478684, -0.04568725387245053, -0.038179522814420046, -0.004415162505038883, -0.03934898842933078, 0.03869058758476131, -0.020408281049644962, -0.009603506485856306, 0.02131783359024162, -0.02405564673706423, -0.01646325534015226, 0.002915278076949557, -0.047814695632708404, -0.02794329431857495, -0.025047356113455977, 0.04837943923230349, -0.011399490851676887, 0.027876990046763018, -0.04678712242548856, -0.04232645449456236, 0.011557326533200518, -0.003977830471167754, 0.003997563054866949, -0.01664553087254268, -0.04625394826240962, -0.00879922313197754, 0.011847475589182822, 0.011168022886700268, -0.04241505712537178, 0.026961995556273256, -0.0023014123728484215, -0.014994927064900044, 0.049442558935641784, 0.0010477293137965194, -0.0034864358970876697, -0.04534062478247452, 0.014341034162007339, -0.029696680148066514, 0.04303633899561088], [0.10101010101010101, -0.017822567311523842, 0.05578876140605982, 0.011268176387573471, -0.020030062699301042, 0.0010506635064802122, -0.028634347951139585, -0.03831129393505137, 0.007187579105054846, 0.08699070750532596, 0.022563818000236116, -0.05900304583637581, 0.009890162427520645, -0.0030023651360576373, -0.0067722964701888225, -0.011386132092330793, -0.048259022915289565, -0.005176264132948291, 0.02115688294994126, -0.0005931075302266671, 0.06289956366227234, -0.0717553287161456, 0.01003476836185484, 0.002184457620597713, -0.06562911123033698, -0.04483314550140742, -0.0483204814501381, 0.024777877797942195, -0.037714297900952265, 0.040977145294841345, -0.08839190662921739, -0.035435205457780644, -0.034008312054043116, 0.0374091996794847, 0.01701379000154457, -0.062141139312062985, -0.022358121911026742, 0.03985078011190124, 0.014809102461281433, 0.024998234382152207, -0.016700966756150216, -0.018678319253858367, 0.008090692657797095, -0.011602962488267799, 0.03461048046330931, -0.04498449956262971, 0.02796182708063677, -0.07109856449126867, -0.004062951429550753, -0.05684867298761536, 0.03115915909591056], [0.20202020202020202, -0.025370808236610535, 0.0668215767269992, 0.0037529001800566293, -0.04249874081981121, 0.011916568020462296, -0.021779451489311288, 0.007290972757195549, 0.005111877292238547, 0.04895818588974209, -0.00892790633954419, -0.01367795463263461, -0.032662963087867584, -0.010034699259029289, -0.022716500657321396, -0.02081932054650251, -0.06455543409255626, -0.018454151179551702, 0.011843712002423436, -0.0006832442511129362, 0.09343215112558531, -0.056314586689947675, -0.02389685711173448, -0.02307885882405766, -0.1152591295669996, -0.06279547455252442, -0.036215538063392685, 0.04854456879684008, -0.06399878694479766, 0.007818299158128462, -0.07517733439045704, -0.04542339019290293, -0.009421622600588736, -0.006336773219680819, 0.031495493417033615, -0.04837456400228411, -0.023895541463635206, 0.046884938610794236, 0.023474782539263318, -0.0019078058730204982, -0.03370448383489309, -0.04952692766925984, -0.027191175248125286, -0.02772310104591823, 0.032679830960215414, -0.06747163961739452, 0.001030548788459016, -0.09492129929490976, -0.028469190655946643, -0.04866796820620435, 0.033603238655798916], [0.30303030303030304, 0.009106804995379834, 0.047721611579439424, 0.0395643227851996, -0.02072474036547757, 0.029116836399676653, -0.023208464678633557, -0.0021079095261689468, 0.0033285793409595964, 0.010405045385693083, 0.0024601805470800472, -0.041458101909862294, -0.06314286920449805, 0.003063912577242301, 0.007218741539066851, 0.023816727736642476, -0.10457172805524678, 0.016260799325888288, 0.048133850806228666, 0.015299635819650971, 0.06584984244241275, -0.009392953194577051, 0.01910866903321416, -0.028181110216343865, -0.15078398657833178, -0.07283368984475394, -0.07120511679425376, 0.019681396991548982, -0.07304067460650318, 0.011282111997874513, -0.055670348613366304, -0.06453360295585167, 0.029870257480342083, 0.0434016239848998, 0.05567685613644189, -0.07803803407688366, -0.05315769374987165, 0.017801744683282227, -0.0056657572024316205, -0.041881352673658265, -0.004495016257906589, -0.08740829976532263, -0.00859112294857984, -0.04098453120471303, 0.0729040534246214, -0.06254042149646075, -0.02445980360806457, -0.0528161026716152, 0.014824709334231946, -0.03324754894172366, 0.02314496390485957], [0.40404040404040403, -0.04042130938552291, 0.06749510233073502, 0.0742575707461415, -0.028589148189821993, 0.025394188769133214, -0.06045651032726669, 0.019580103564292156, 0.005983120945320612, 0.060101546018520045, -0.03984479816060405, -0.06094548989245717, -0.015647433314165973, -0.03736370926749183, 0.05209152383705187, -0.008941042827291825, -0.062262570328595696, 0.015870196071478007, 0.0022198187609531114, 0.05546863926364744, 0.10088999250906086, 0.010502201026385969, -0.008153691667858527, -0.044891782491375876, -0.11347232034357815, -0.0860973638353595, -0.08210372122806389, 0.025696777295989136, -0.0918262731377514, 0.008625151516392706, -0.06984721027313341, -0.021693101362038572, 0.012392198340798858, 0.026511753472067804, 0.009704073236796916, -0.12033812071077318, -0.026912464409203717, -0.026409050982054042, -0.021935858100778072, -0.03611504484861838, 0.021161738295667757, -0.061323994638567074, 0.04068997785521578, 0.007758337089384303, 0.028765169000617, -0.03630041033032473, -0.06274763541384067, -0.07247685012708076, -0.01938763772069048, 0.009996747783549212, 0.03773441357982164], [0.5050505050505051, -0.07826439730721149, 0.10345693190364154, 0.031277482137010384, -0.06425556097292204, 0.04582149829262994, -0.05608729340426295, 0.036813244408289605, 0.0502905536277322, 0.0141023786143308, -0.023035346459540012, -0.029013509700661008, -0.015227305498253421, -0.056641453695038625, 0.09153019023272191, -0.0291697537570394, -0.029244375755145595, -0.0277745627187199, -0.03965449962031607, 0.034680074557436026, 0.10368843720033157, -0.03629236344797042, 0.012010948689167206, -0.07884467376908957, -0.11548675086753221, -0.04130123762047884, -0.06646415258858479, 0.03458105271186505, -0.06408835908586294, 0.05795552741783975, -0.05435739033289221, -0.048195332843006644, 0.030260603687302583, 0.046946393619688304, 0.03159864305642287, -0.09884116271212769, 0.009327793702041343, -0.006790415759019865, 0.013690892966892878, 0.013708919598213909, 0.01473718999082976, -0.04894021669517754, 0.0608939566603905, 0.043415761371319285, 0.07372293884197244, -0.06618297561262701, -0.07795498212663071, -0.09107151986482478, -0.027146888144698258, -0.001865049683945328, 0.010339081321902872], [0.6060606060606061, -0.06118948883453362, 0.1159893076793223, 0.011452723485425233, -0.0950033929477241, 0.013928212409240665, -0.08603823253099718, 0.07102695466366207, 0.04936093879943197, 0.050058753066198745, -0.04988736998779732, -0.021166528109877954, 0.033336385735775666, -0.09188897740463955, 0.07164679234244527, -0.0715019879756858, -0.023865942488742825, -0.06848728242916183, -0.06769868517117957, 0.049637149758739896, 0.06032992387457695, -0.08596284239909682, 0.06185939105601697, -0.0942208987746679, -0.16378415417702102, -0.0655361398675467, -0.021903314289291605, -0.0053671901833961325, -0.04936683819933477, 0.036021921188022756, -0.08692295076805068, -0.008008443815443286, 0.06884851628127392, 0.017506986706504038, 0.016870214299523498, -0.1381132820281501, -0.010077004449924456, -0.00487839306918856, 0.033604172861691095, 0.023659340255764306, 0.0004851442374971711, -0.05265473245961266, 0.031580111202357715, 0.041318309929342316, 0.053737491459313, -0.03521645116405185, -0.059864557257958834, -0.1362683705589297, -0.00934372540799551, 0.01650978322852377, 0.034297457685782906], [0.7070707070707071, -0.028604213324028856, 0.16423009064027727, 0.05941509158844225, -0.11362186961596057, 0.028686430142473233, -0.06902214653101693, 0.11510099389340128, 0.0023739784154888713, 0.046609256438568, -0.07751352280335319, -0.06840480965954601, 0.016778643898156167, -0.10555714556988861, 0.09774240185377239, -0.05786485796191988, 0.024082202998180355, -0.04925303033756061, -0.09597987653770407, 0.0010540321890847512, 0.02467967485866307, -0.12373179840282293, 0.03968903166779236, -0.12131938819249055, -0.134801169360345, -0.035951544028091406, -0.02227999437305041, -0.028719145645102154, -0.03987152197142358, 0.01981632526089653, -0.0738796185665226, 0.026382404289520496, 0.10796685599219864, 0.04810633449053493, -0.026859652563524246, -0.17201056532072354, -0.043396420726951115, 0.01770445862600619, 0.020718726031535194, 0.03312278716231801, 0.036691593722985555, -0.029840078206771245, 0.047493817220684256, 0.016330705473700417, 0.08378708727282339, -0.0160166890577298, -0.10058588096928717, -0.15338485428948112, 0.03574142805753474, 0.025086313876284908, 0.03320418027740206], [0.8080808080808081, -0.06493355435553355, 0.2118801033418628, 0.012977791243745727, -0.08310485287923086, 0.035497303627022816, -0.06321092482739837, 0.1120811045634972, 0.0459210126975595, 0.025509089177487152, -0.1195819584600443, -0.022966032484455237, 0.053473006803198164, -0.119248823619674, 0.10652588215033551, -0.08432849604188562, 0.056403717732496673, -0.04484879468507029, -0.09853667268740743, 0.012891889035786051, 0.0745475134605702, -0.10074256886855536, 0.06497001159495827, -0.14965647135001972, -0.15076671962088092, -0.008698188867863717, 0.010971212389953248, -0.0025976292059765177, -0.03376179590936595, -0.020737330407343435, -0.047121403791846525, 0.03917752418292914, 0.11329572977797817, 0.017822274715780496, -0.05206318231239112, -0.20994527514298755, -0.05896043497718639, 0.03603836718289691, 0.03002463608688076, -0.0161062453724609, 0.08654538047400201, 0.014138197801473358, 0.06574298985753776, 0.0633481412964258, 0.09583624622409134, -0.06535531998704458, -0.07101498713682622, -0.15673132744447388, 0.05368587171272757, 0.0003136689794885142, -0.010098591806081109], [0.9090909090909091, -0.05742422141280855, 0.1785495164617486, 0.012217055943603937, -0.13184226984348285, 0.08091113508047233, -0.08997309307823756, 0.07285275695236836, 0.07064901278582356, 0.0488354849575382, -0.11667664439390775, -0.04175215002212923, 0.031675926968666696, -0.1419339671560064, 0.11456805332169702, -0.06523532982755806, 0.054191697989526236, -0.03613870649222619, -0.092525607986835, 0.05450845563067388, 0.10577739571504534, -0.0763778604711675, 0.03395078646962753, -0.15404335743624134, -0.19997168022731346, -0.027607624578909494, 0.058078043747533364, -0.04402026575834601, -0.010203948115548915, 0.023966942280653485, -0.028106183053003816, 0.07498491806162576, 0.09563181219852691, -0.022150678072574093, -0.04088969551038143, -0.2488777691553815, -0.07285575456335651, 0.06050098179912384, 0.02674761851448579, -0.06546737912094423, 0.06694970762739468, -0.009099167474163922, 0.09930244746023226, 0.04352837906988584, 0.06143387182856306, -0.019331270421701352, -0.025414250482562475, -0.20140883932422593, 0.02281207815309138, -0.01823367338105567, 0.015575195053302866], [1.0101010101010102, -0.018292025981582145, 0.13086733010958895, 0.05745474124495857, -0.17693167257372727, 0.1105801589686085, -0.08841424451725521, 0.07952129682650204, 0.09369016199710462, 0.04605472992091571, -0.13745592189921596, -0.07334486215436138, 0.030530291089918178, -0.15150051531928962, 0.07027896593113073, -0.04508197004045093, 0.015787363028293547, -0.04162958129062607, -0.13452078237168186, 0.0992905056818863, 0.06493266782494128, -0.1076276076135691, 0.006996871652767314, -0.15886936831034598, -0.17535252398123802, -0.06950787894737459, 0.03137016987878111, -0.04742881553957868, -0.005692383196079491, 0.05972334372602433, 0.002023728994003708, 0.0711449845231538, 0.06581183070718302, -0.014164530463071034, -0.04374879737998851, -0.2975830670834939, -0.02838650742771895, 0.09311025399270433, 0.04944619423286249, -0.06564550838036042, 0.057357556347319164, -0.04852049629715746, 0.14134549641831815, 0.000990840582995832, 0.09197140875977164, 0.009789016998579217, 0.003813723743694219, -0.1740502992029162, 0.06388115332506589, 0.02463481019137787, 0.04861925313753418], [1.1111111111111112, -0.047371813769863186, 0.09694178496029712, 0.08851211709790568, -0.17033163407521792, 0.1191111982398035, -0.10691504717538722, 0.1274989998167455, 0.05421827744289556, 0.032658108123374545, -0.1339814888719003, -0.12169789948769909, 0.03614749901309876, -0.169056417853599, 0.07198410106291497, -0.047541767080099336, 0.007575127011819973, -0.009674301791391046, -0.09202677864186898, 0.11219953306393095, 0.053279863463117236, -0.05831034978489547, 0.0174785378050264, -0.2009091324568602, -0.14140796969739947, -0.05733976240766925, 0.04896713650712795, -0.04477944469501641, -0.0018564240175304374, 0.09636361667419935, -0.030781964589157607, 0.09026777261476902, 0.07264118309823607, 0.01112013494585029, -0.06731274286107486, -0.3340713913706565, -0.054008995722663114, 0.13684476922777233, 0.06797421443809197, -0.01770199294733346, 0.034114304523598246, -0.015307488386612285, 0.1549242487858933, 0.05027548448047876, 0.09406798821887644, 0.04996442772782736, -0.011760299232903506, -0.22404857912328724, 0.04196201083175713, -0.013362396840796296, 0.049084589050919024], [1.2121212121212122, -0.07883899181485568, 0.13929146748620586, 0.06794516122754281, -0.15165056445977831, 0.11464669494712387, -0.07225579228324686, 0.12089046996976456, 0.08077853374549515, -0.00996758328898617, -0.1343175421186189, -0.11929180247212241, 0.06736555714913786, -0.14459700434609993, 0.04326595844164218, -0.028607660231773118, -0.007232060159066177, -0.027302494107546448, -0.11120807789194458, 0.1222178064857127, 0.10105222733498456, -0.012889064457344009, -0.003436875283694206, -0.16940793195697104, -0.11221471619014883, -0.01686351117125174, 0.012964347380730892, -0.0883328431786039, -0.042787318199503974, 0.08987639972073076, -0.03041162732695707, 0.04205124327612529, 0.0677798578256902, -0.02396022054563951, -0.0471203066368063, -0.3361887400978108, -0.054020378537584006, 0.13109884137252129, 0.0485397840057494, -0.05315973678786638, 0.05722160697099606, -0.05341511173100093, 0.10801182900660986, 0.012480802658527766, 0.09947917947081335, 0.08711585778035985, 0.016722480497613643, -0.24091668648516157, 0.04438544084332181, 0.017509155509588686, 0.002244916244736911], [1.3131313131313131, -0.11800130276843017, 0.18464645247415926, 0.07756851307937693, -0.12896947395460764, 0.1384918480002733, -0.07751816425550655, 0.1526939136180624, 0.10156643820635458, 0.022152946944363705, -0.14044616742948143, -0.15259612581595008, 0.10265275218664503, -0.13587699220544297, 0.08957017504658893, -0.07013250620115623, -0.04440380243239865, -0.024265955291625927, -0.07948939418779974, 0.13137053920057096, 0.10847746165349079, -0.003309726769470273, 0.04165562601162477, -0.13091905335005685, -0.1525534974624932, -0.03824570510474527, -0.005742838564150653, -0.07481431388675984, -0.007656496559705801, 0.13952495139216015, 0.014486416286038944, 0.0686673754997256, 0.019306780000765668, 0.016819603565405433, -0.08964948505302725, -0.375340318903204, -0.027247383909820358, 0.1258287438690868, 0.09569010294985905, -0.02567837169557475, 0.02851324376850451, -0.048410027496843394, 0.1346936141805913, 0.044449083507953645, 0.08595270610646, 0.06276821099207497, -0.008258880451499168, -0.28593600985676176, 0.050052831599122195, 0.05507244402141945, -0.04090584419419108], [1.4141414141414141, -0.14603155350593094, 0.1557442943460039, 0.07068629830934992, -0.13100009782443994, 0.1697154757965521, -0.11750964181603615, 0.14641887329047507, 0.1438202525779682, 0.020954638423295778, -0.1494794532511134, -0.12130192113304457, 0.1019857832571366, -0.08719608461431465, 0.08274249822458926, -0.10688628403995587, -0.01573666531770511, -0.05674677681911061, -0.11307517147561917, 0.10023946707186214, 0.07742354749624919, 0.037517815667487416, 0.08831919288956587, -0.11756420485864484, -0.17603870834627536, -0.06719115923538478, 0.021682574015838108, -0.06715489305587377, 0.016293512563172845, 0.12898244958834626, 0.05888376339041684, 0.07127889301797985, -0.028888120057515954, 0.033523278434063136, -0.1185737957421748, -0.36734800052227423, 0.003966909854228939, 0.1519370513713133, 0.1379135361914858, -0.037786937433482944, 0.02765999292716534, -0.03333910787245288, 0.14057572361581133, 0.07262561681485781, 0.13164169285712357, 0.09769462702558358, 0.0009657877574359153, -0.3298188496560976, 0.06364312628484545, 0.08302503694989567, -0.021104793070385295], [1.5151515151515151, -0.09816917503519398, 0.14179681942746472, 0.07992604860824855, -0.1442344256465871, 0.2124445931517671, -0.07735043327662512, 0.1774723032179951, 0.14472738882302333, 0.04666084490985707, -0.1734183517666648, -0.17101854087629537, 0.14791498015604201, -0.11821382826515503, 0.09379383068129823, -0.14970404164345258, 0.012109035560499887, -0.03528460698213613, -0.13266442649849036, 0.14268342000345174, 0.02842867928564205, 0.058762454954366106, 0.07516420994261007, -0.13992273145962314, -0.18146596593232237, -0.06920969531797844, 0.06428872157233324, -0.10746670633949187, -0.004280467998296698, 0.17827670991681469, 0.02215549122475685, 0.02423665572814055, 0.020971509418871687, -0.010132233378194418, -0.07772101587273994, -0.4130015713785243, 0.0020565480340073543, 0.12124189998493834, 0.17193712429041527, -0.07051939418513024, -0.0029582207791746667, -0.028086617558330508, 0.10084935255519029, 0.05724098128757821, 0.14291216341596308, 0.10369058271468269, 0.014331875835835768, -0.305260281434359, 0.014839066043393107, 0.06029555628820635, -0.05132025940047752], [1.6161616161616161, -0.06700086012626166, 0.14673434559023193, 0.11930125908026916, -0.11023741572641195, 0.24508215382391832, -0.04174160842145859, 0.15043314979885353, 0.1659383856613187, 0.03376865217078778, -0.21448086798885418, -0.2110947789251333, 0.11379142698552605, -0.13539179712647084, 0.10050697794166193, -0.1101437399590246, -0.01825660105107295, -0.02990918898041136, -0.08780615387768906, 0.13711100239559762, 0.035187163156308605, 0.0869219158775784, 0.06561258269088757, -0.09174947610252415, -0.1529279747662014, -0.07906323066173059, 0.020006288527928996, -0.10563329644572814, -0.03512305668965463, 0.1897046667783844, 0.04880302219373962, 0.004392770655154428, 0.01641261288780676, 0.009277789310741653, -0.06340150023677879, -0.4096785927942019, -0.0009869363784890126, 0.11299634101946293, 0.19597819158096053, -0.06380368283751695, -0.001367469805269647, 0.018960782920917865, 0.05259527942297684, 0.10156863529163393, 0.11592573557082786, 0.08604993454987697, 0.01053645181384873, -0.34240540892817145, 0.04598098459798629, 0.015023220375558012, -0.08946398655121202], [1.7171717171717171, -0.09980675885300225, 0.12391743050792914, 0.12470337805743978, -0.11482106048131141, 0.19807781359042695, -0.06310862103027726, 0.14153096431573264, 0.20304321781439594, 0.010719134647051775, -0.18381220478348037, -0.2187576986332263, 0.0673868648158984, -0.1185663502689065, 0.09750115993318635, -0.08445451799294687, -0.05343995247777815, -0.07187743795989507, -0.12676068409786737, 0.1025075426398897, 0.08239826713404025, 0.07212875575579487, 0.08732726538191432, -0.09056692484548907, -0.14492346385656413, -0.12769144951026198, 0.046493808319841505, -0.05587376937665858, -0.08335079532946987, 0.2114267670555772, 0.031239394834790282, 0.04812326328327205, 0.05642702246717865, 0.0021533310387308498, -0.04087463444191235, -0.3889567390866209, -0.02733304958068371, 0.12796261535880504, 0.1865590456024192, -0.017362655391344906, 0.0430334134392051, 0.05106100704570757, 0.027134122882121952, 0.14062169182397588, 0.16054725484902674, 0.081067069233681, 0.006626942041579637, -0.31339431107271093, 0.0022729826382756127, -0.008857771280042726, -0.12634454443707777], [1.8181818181818181, -0.06818428398041826, 0.11997759261541416, 0.12399002879196716, -0.13268447660309154, 0.22535809577131782, -0.08720714398492062, 0.16462607829754533, 0.1961093993101151, 0.03417859818972192, -0.2181546732102381, -0.26817678869745054, 0.05803488911824167, -0.11809020746565864, 0.11130596690996819, -0.08544601392448847, -0.07911064095392503, -0.10956076907221327, -0.14014595917789302, 0.05415057641393075, 0.08402644958935017, 0.046129376993576034, 0.09358780871933646, -0.09213627936237538, -0.18882440176268256, -0.1240493614364375, 0.07839215705780306, -0.09502129874550336, -0.10993093471779564, 0.18784802732422282, 0.0505233485038019, 0.0054168548097204075, 0.087908230483972, 0.010891961168416515, -0.014836273906101479, -0.3874410999397031, -0.02593353089341166, 0.08862301998897665, 0.21411292555328057, -0.010145586792680416, 0.04168370122418784, 0.0701823440003767, 0.044726424199287226, 0.13945435672028353, 0.1296781770673138, 0.06442578300928375, -0.028151532897767378, -0.32202939623796706, -0.01160770581523588, -0.04709054028457427, -0.12066455053542963], [1.9191919191919191, -0.09077690927624835, 0.13959374909775268, 0.10591707451091728, -0.1734124898859874, 0.22753583513294984, -0.13057000662910076, 0.17835751892135251, 0.19482226842807784, 0.06883505081959629, -0.17676205868445508, -0.25378394545973154, 0.042316741147245096, -0.13603042505614327, 0.07060556737986284, -0.1117154862978345, -0.1272198651920104, -0.1212586581433636, -0.11845067083426933, 0.059116265595973994, 0.07847832839368613, 0.07858141488273462, 0.11840072912249514, -0.049281065636394665, -0.16999061880773358, -0.16016792671889413, 0.10765399198497852, -0.10094472141866696, -0.07538641494492529, 0.1650423656608949, 0.03279079209400203, 0.04840507362484942, 0.04861008374257494, -0.0311783113445631, 0.018112716631592415, -0.40485729867796627, -0.021651620034311515, 0.11562000595151548, 0.2620928296558518, -0.020280632666710298, 0.0870791229445354, 0.11730125266358352, 0.08132524359802606, 0.09101464829186726, 0.09861631095263027, 0.014778242348345516, -0.0395323585594575, -0.2861193837794792, 0.035018746124020075, -0.021217543422060236, -0.13017012292927363], [2.0202020202020203, -0.09760649090993617, 0.1396293387652392, 0.08225365281598968, -0.21736869667242883, 0.26607456835707244, -0.1488068394663124, 0.2052717870034896, 0.15704544844658683, 0.09615102208924141, -0.18209552169228244, -0.2511949883143925, 0.01989857204189925, -0.12694050005284493, 0.035172149970631374, -0.14026251008477042, -0.09834750822214715, -0.1555044778041489, -0.11390995424656236, 0.09453309838102086, 0.05834267902700328, 0.05694241162651089, 0.08905404646161899, -0.06559162313775702, -0.20962419483720338, -0.1592102217778285, 0.10683391204715302, -0.11171090146097769, -0.08471750420531357, 0.1616705965949449, -0.0021167032626764407, 0.03085535170103377, 0.09081286989225998, -0.010954655823526734, -0.02419514843876269, -0.4535166280907465, -0.06364146949490625, 0.13727028041266456, 0.2839378439538514, -0.006867913058910836, 0.052485523371448906, 0.12258290891255404, 0.09509255104800773, 0.09311034356932145, 0.11979375234317124, 0.022914188641295484, -0.0013322381087842727, -0.305854798853311, 0.04945463721612262, -0.068273625665664, -0.1617270921556856], [2.121212121212121, -0.053603508947698705, 0.1612364378216728, 0.08648171416956926, -0.25827357995234135, 0.26193073506543785, -0.19362253994198106, 0.2508941912280793, 0.12604705681030326, 0.055877334086324254, -0.18715543559543157, -0.27628609989359304, 0.02716639879593412, -0.17243913569740948, 0.007862605298298176, -0.18401177915181582, -0.08915743468395128, -0.1278655281117129, -0.16353578058849255, 0.0806209803151528, 0.09146988877293494, 0.04324067310004319, 0.061860102784768015, -0.023139339566832694, -0.23188120664243395, -0.18135403350384488, 0.14091837413090555, -0.10228311616779387, -0.03849158042976522, 0.20845038746476283, 0.010684430560983088, 0.07327031084905089, 0.08268488969196318, 0.019228322430602414, -0.0059163871294916695, -0.42076693063377973, -0.0550459770627397, 0.11189919771425955, 0.28951004612205133, 0.010153737833698018, 0.023887246116070415, 0.11060433133217557, 0.048277070579695575, 0.0915065853973417, 0.14775993620496147, 0.06396813120496987, 0.034092788615859446, -0.35095204971969224, 0.08113722600479717, -0.058662808172224294, -0.2005114970037783], [2.2222222222222223, -0.021838571070025965, 0.1638320314446507, 0.044708166562771656, -0.24000293430951064, 0.2660029926813999, -0.14920370815879086, 0.23849485741269166, 0.136021109851742, 0.03716581462674633, -0.22897599829638024, -0.2991665944249475, 0.044109308390988214, -0.14178569861129986, -0.03370828297299165, -0.1747339837530801, -0.06195799251535275, -0.17523246265807688, -0.18345766030294935, 0.1301988732084264, 0.06998983524415267, 0.020154165882791626, 0.03385451418170578, -0.013982839481120578, -0.2762372571700198, -0.19177247868524733, 0.17069716971515717, -0.06535112997580719, -0.0669579402029811, 0.20596011208997914, 0.053807602295734565, 0.04573075541380962, 0.08887385214286854, -0.02916905676513517, -0.006850634711464916, -0.4023892429143018, -0.045241785119406124, 0.1373001852311633, 0.3131261532268002, 0.02436315829533875, 0.06890505534943607, 0.12790615972616667, 0.08828170717436576, 0.07274390656547365, 0.1480517969467906, 0.015591774357331965, 0.07902436025087287, -0.3855793593855984, 0.10772827520404962, -0.03850421010510268, -0.2248924715214633], [2.323232323232323, -0.038227376057936094, 0.11397193375655507, 0.05827183754531151, -0.22192935758644688, 0.30677949250794123, -0.12748197795446878, 0.27806499959239805, 0.11582887271715714, -0.007404448248448929, -0.2093266566778264, -0.3432859604228488, 0.08454103158841676, -0.12095126170587099, -0.0001247103173558778, -0.21776914574857936, -0.10231158794598537, -0.1976473411084984, -0.22493573240558068, 0.08993025911012015, 0.10982340668075227, -0.027237383595819717, 0.00028527840573579905, 0.01123804721178098, -0.22945180571697854, -0.2075987915421703, 0.1905730621227223, -0.10265792274990482, -0.02902371438026137, 0.2474860596430006, 0.0364494519338396, 0.08777040745871278, 0.06867859475744728, -0.05634509301810832, 0.0005746849100208883, -0.43350851596291984, -0.07799623071732979, 0.142738897640014, 0.26936718743494836, 0.06634607941354312, 0.08789028757184135, 0.10888384428672623, 0.07661339980811244, 0.09666503187193881, 0.1690730227350044, -0.011585811849331253, 0.04437036658233835, -0.41224725290570463, 0.11105026266066037, -0.045628804071790215, -0.22413962218933703], [2.4242424242424243, -0.07068633068370242, 0.10344196242553862, 0.0879123600639323, -0.24761194099770434, 0.3124104965356286, -0.12211605793832318, 0.24891304915815543, 0.08409720949479735, 0.04223733820125823, -0.23866944130281248, -0.2972669822314491, 0.12093656058829519, -0.13056062321182824, 0.03435777329786985, -0.17553072394694463, -0.12907355114153635, -0.21107950523228902, -0.27442861238106836, 0.13181303562144414, 0.13269747242106955, -0.025434331374397254, -0.013496141709708056, 0.004988352309692946, -0.21697917807161304, -0.23816619527498, 0.14159445961368555, -0.0880881964076806, -0.0045781864135407, 0.2849047866530995, 0.06707580049994954, 0.048934843580182505, 0.029266729825990136, -0.019578462983512755, 0.015054014171800571, -0.38518731625159386, -0.09696566003672655, 0.1825717709672895, 0.22159275915823515, 0.03125369736006322, 0.12124332304264272, 0.13147882515332732, 0.1040205461156958, 0.05218758082621635, 0.21211772641502963, -0.055317684759686916, -0.001284762426637033, -0.3940380721725382, 0.08363400605158086, -0.09105118042890553, -0.2111576253304674], [2.525252525252525, -0.0834031260547101, 0.10265865941565361, 0.1333871106070132, -0.23356579678210135, 0.2811219687646932, -0.13614158095033757, 0.20523269315646359, 0.08439997852515473, 0.010007211636487032, -0.27909913128473773, -0.3311757887548597, 0.1455624441057669, -0.11171876049623682, 0.08297890425867302, -0.20177758320677783, -0.1181670448313299, -0.18544488898397668, -0.3188249528236301, 0.17394258395980783, 0.10333061757360565, -0.03349127280700598, -0.04973055627353372, -0.010650035730590247, -0.21916986521044424, -0.2005543917486436, 0.14559558742740075, -0.04743169038654137, 0.008538853682345846, 0.2577933313002869, 0.027734745051976234, 0.0604994886867629, 0.036468298628776145, -0.03208878676717282, 0.058330689941761237, -0.34254109911431335, -0.08497788853742355, 0.1829839982984026, 0.2657430527559417, 0.0803633258751053, 0.07520879899038978, 0.13761397840917974, 0.11004131215583382, 0.029605433079839857, 0.2605652832002481, -0.023307548316088604, -0.009420269597720679, -0.4234529889581896, 0.09863769858908283, -0.09517284548813834, -0.17092345358209976], [2.6262626262626263, -0.13283427531945277, 0.09294669255356783, 0.1518495377762845, -0.2766518784709462, 0.29923310551888854, -0.17022335084190465, 0.1791748604483191, 0.1294669422409899, -0.0028696878813276126, -0.25689805905683366, -0.30172002975402373, 0.19048711695184578, -0.0650586325494214, 0.08765720070832542, -0.2112980267642411, -0.0808503319190948, -0.1906147676367073, -0.3216448365452459, 0.21233878293415254, 0.08290252882463742, -0.008403634886715916, -0.041050042177542934, -0.03518264725764676, -0.25452345644267604, -0.22339152917850824, 0.12186974122172228, -0.0704241594653672, 0.016471179374115262, 0.2886094948200779, 0.050381963040388895, 0.09815624503288457, 0.06954389059173671, -0.06654923016179731, 0.012998711368223545, -0.3307546908206922, -0.05898177628596768, 0.2126205804972872, 0.26155645625305296, 0.11107198004990729, 0.11571318950549483, 0.1333494825234041, 0.08866679056005977, 0.04077200924000963, 0.2476948718249345, -0.07160847345914245, -0.03231789426887375, -0.38522958908526234, 0.1090217164700703, -0.14100744479144878, -0.20721625139584254], [2.727272727272727, -0.15759163997496872, 0.07837652256419989, 0.1506788544567944, -0.23935988229631966, 0.2506177740606977, -0.17692754672542466, 0.20719478533086735, 0.10272495143685688, -0.016976428671683856, -0.2675325404268904, -0.3101786327929101, 0.18736183484725738, -0.07110807251970555, 0.13158192745931388, -0.24843380927821912, -0.108133911395628, -0.22626674302555966, -0.30854565784173066, 0.23828685145276837, 0.11263882995223518, -0.03830356005231701, 0.003924328907862054, -0.08392509651631982, -0.29319376234980027, -0.2594729580810655, 0.10166723843979641, -0.03621635843127916, -0.0032672925173125172, 0.24115787473778544, 0.050511526832212356, 0.1286402841305345, 0.06892939164488006, -0.060649416765737776, -0.01332193996493945, -0.2958596254583679, -0.039435087488949305, 0.18114285437941244, 0.22026605023359233, 0.11885353763836269, 0.12407240976412875, 0.17576447447417426, 0.12663015255602608, 0.08294662264960166, 0.27392638764785593, -0.09508988844369279, -0.000659112926485031, -0.38857976095784796, 0.1183531791223066, -0.1061110185211344, -0.18420977012691034], [2.8282828282828283, -0.12802538912764, 0.07843795450849521, 0.14922028547523114, -0.2783991873130684, 0.23862693984579114, -0.19899132903443553, 0.1948023294826205, 0.12663315586390933, -0.0430583344818162, -0.258421232841706, -0.3472131412054806, 0.19437931649704943, -0.09880133663809668, 0.08951380688239108, -0.24005850244374574, -0.12954658076806302, -0.24198953635761666, -0.3121498307346149, 0.20105152341335736, 0.08265941841212658, -0.033064492164686723, 0.0087456372245495, -0.03962495474129485, -0.2828400633824905, -0.29522945207446555, 0.057607662284788, -0.0025565187625672045, -0.02947746001408877, 0.27858533678186453, 0.09665490417150588, 0.17625527087826007, 0.08717660732432143, -0.01124457772973285, -0.0013675903794523585, -0.33303648214997017, 0.0066752183367064025, 0.18116055494770333, 0.2352799904013777, 0.07761617140914791, 0.08184657616080643, 0.22471291711799665, 0.11436146120477861, 0.07202349417469076, 0.28179766051837213, -0.06367193329094274, 0.04733316600299705, -0.34859975017521944, 0.06926704274215324, -0.06716225259564396, -0.1890595444729347], [2.929292929292929, -0.1764998920030061, 0.07295561739160904, 0.19588957753352793, -0.3114936108011249, 0.2694953888591303, -0.15288756581790408, 0.20295070243786592, 0.15280028729102485, -0.07364588984195891, -0.257144771023213, -0.3915494231349761, 0.15913915744873253, -0.08059639292526666, 0.08474896328542046, -0.21403023624587347, -0.16990714761024062, -0.21050855954757616, -0.3214145787859379, 0.18525065819988698, 0.03528026450921195, -0.022658573089081313, 0.03407664329340723, -0.07476800415800902, -0.3157662761176753, -0.32808132265290463, 0.017149904783423646, 0.03365327344509045, -0.0595158286473465, 0.32613018523456644, 0.11299467598272814, 0.1885048541842105, 0.09057973724459727, -0.056088912076863826, 0.04338850098495815, -0.28902561799686943, -0.017488713016694322, 0.14302087950408574, 0.24385084048509084, 0.07979403119121771, 0.06011604565571069, 0.20830855216351743, 0.07265032988019898, 0.09555312747695609, 0.3098499004839268, -0.027573874816658482, 0.09342184501353447, -0.30920942541090063, 0.057062669133059046, -0.06513171268779697, -0.16137382036061382], [3.0303030303030303, -0.1666155543101568, 0.03199889621125262, 0.16702436628324008, -0.31475581165659017, 0.27710793010031787, -0.19307435023706518, 0.17712091600524282, 0.17940593525921203, -0.05143020286301155, -0.3046655269384938, -0.42185380129668737, 0.11879228375888995, -0.11037682692222675, 0.07896453770639054, -0.17705161079962226, -0.1983638749624878, -0.2192999866643487, -0.27227332675351834, 0.17024383329858225, 0.03959595356624698, -0.024085448079425566, 0.019269101501080337, -0.053334598786652636, -0.34570275840973086, -0.2826277250758397, 0.04501630989470047, 0.04950566219964418, -0.10778744010822733, 0.2851871398648781, 0.13469597207380327, 0.155919782447014, 0.08211054268612858, -0.03708590965621578, 0.05507122781567333, -0.280067650944586, -0.04392488183390856, 0.12250304455555722, 0.235057562880729, 0.05119976007341506, 0.08988559549526237, 0.2115569066032025, 0.07989106275040357, 0.06893249560512421, 0.3169507971013314, -0.06396447237592892, 0.10078422966978551, -0.35334907538628885, 0.0611357112854634, -0.07486229160383594, -0.1163529859925812], [3.131313131313131, -0.15623510040587144, 0.009355188213996682, 0.15818918010102337, -0.2871608897162529, 0.2422863805533182, -0.20237479499455088, 0.17097637468056015, 0.2218555154195377, -0.0017952166230126576, -0.2783860655475608, -0.4671738290958989, 0.1671811611196156, -0.07466375588960106, 0.09359885548536324, -0.18357016762335654, -0.2145845350401715, -0.22072671558492196, -0.30038344234492287, 0.18201164112876436, 0.04736635560980182, -0.050795363215870894, 0.026545458319696697, -0.03474952050896722, -0.3818461745013291, -0.30317572602043363, 0.0679453681642384, 0.045174643356859265, -0.11606550017994323, 0.3283888449993263, 0.1732090191194721, 0.14973541091550577, 0.05740389064371358, -0.05550535779271316, 0.015272145548256393, -0.26817028020273803, -0.08758173988976466, 0.1389906089391324, 0.18834047796263467, 0.05013219834353219, 0.07054738404115296, 0.17998401050764193, 0.08170012628966701, 0.06754080707863865, 0.2674364386949818, -0.07181274181220079, 0.13059690283725403, -0.354569193426219, 0.0959123873045084, -0.05605832590838973, -0.10055931745464922], [3.2323232323232323, -0.1957203318646658, 0.053702897988269375, 0.20715573777895172, -0.2517164381457473, 0.22527185659126864, -0.2515371503943702, 0.13902160199762398, 0.20413638802844236, 0.013992889532860216, -0.3018098849441822, -0.42695160827187195, 0.21176691566415015, -0.027731615883479298, 0.09680838963042597, -0.15974421566500874, -0.2644094792448577, -0.18155876286029032, -0.29148937855099655, 0.2019413227185021, 0.012567162136034878, -0.09300805040843818, 0.04409298951829335, -0.01988585785151916, -0.3378221239731045, -0.3212553673298709, 0.026653865790507436, 0.017454492649235227, -0.16172139777112918, 0.28523482191433375, 0.21015526683995292, 0.14837884078500557, 0.03588661991701937, -0.06606144690275388, 0.06317762091097498, -0.2766714573488823, -0.07631252597356691, 0.10789038027715935, 0.16680786560748195, 0.004434280331612174, 0.026147118233221876, 0.20140947598255077, 0.060823666733160725, 0.08479765252022303, 0.2199344055500364, -0.10829590092617886, 0.13199334566638524, -0.31204139389140184, 0.08640388819653241, -0.07182111425995383, -0.10726220228374639], [3.3333333333333335, -0.2075259873703548, 0.0063573621216635665, 0.15999692345027688, -0.2806777936690314, 0.27044917120610124, -0.24473125743473806, 0.12633364878120343, 0.222030676405731, -0.01704304365061799, -0.2539272009265156, -0.39321444387909277, 0.25465441696851276, -0.06648867607278948, 0.12989119002312075, -0.1739397907971282, -0.2840551957320513, -0.1676510917982538, -0.2670366164877345, 0.24016294259562776, -0.010178560356559934, -0.05057616197239573, 0.07585436350604816, -0.04108633206957675, -0.3175452298132661, -0.3138713167124645, 0.011639029246183985, 0.03335088302977009, -0.16014377961493445, 0.2750294713435065, 0.17170247649727421, 0.1383574272861346, 0.002374319032277361, -0.0829619904309585, 0.1002851310817012, -0.2675848625435754, -0.05886445786638758, 0.10954896195151359, 0.1997018368778865, 0.005087588666858491, -0.014432287378947542, 0.23574875926288613, 0.08764896833534848, 0.07817280096308865, 0.2656035144850796, -0.08526159075410236, 0.0997865303317145, -0.3247661726757943, 0.11394935217766633, -0.058109776350539946, -0.08892431560612993], [3.4343434343434343, -0.2538783817110979, -0.039642768914271355, 0.1801295748596285, -0.3230136067421411, 0.2234876435060222, -0.23707028059801405, 0.16272698785503645, 0.1892126753633593, 0.012561957687254259, -0.20905860024173012, -0.3953862370192457, 0.30335030312850164, -0.10886870683510118, 0.08987011230105903, -0.19501946972999967, -0.2789457600055405, -0.21360936878445122, -0.29506933336690605, 0.20392797268872934, -0.05651625516201371, -0.0915087309176949, 0.08943837507394642, -0.03197068520764876, -0.3142330929543744, -0.3293647108875443, -0.0017857389891375308, -0.001522958773286849, -0.1424664551389693, 0.2432453611230186, 0.16843062643682638, 0.1123680210714439, -0.029018492417803833, -0.06398139112083208, 0.10985190192093708, -0.2830751957708815, -0.05537931010435877, 0.14003321782074302, 0.2252413461165111, 0.01676985597343838, -0.007523015375371458, 0.2084702661784138, 0.10214606304416546, 0.05658469303461325, 0.22832393165681744, -0.06709305100521873, 0.08210144344060649, -0.36895996007317633, 0.08168989554404851, -0.09450150413947439, -0.1058445852434912], [3.5353535353535355, -0.21483722536689032, -0.0613287329422894, 0.1326467312481097, -0.2941221270318193, 0.25130499622161706, -0.27335585446528027, 0.19832635538559887, 0.21017006974270402, 0.02587684109165967, -0.18649160289278063, -0.4326138011193704, 0.3342973688250318, -0.14906188707095702, 0.0491018400262242, -0.19698682386124197, -0.31400075921202847, -0.19690805768548206, -0.3133878204130847, 0.17002030977561935, -0.10138261579249538, -0.09652527748219716, 0.11111015307946011, -0.030495300082228997, -0.3087471898967497, -0.3664863870794513, 0.008623029848006059, -0.008440950946218058, -0.1637855135268428, 0.19838603859246462, 0.17194866304852804, 0.15017338373312547, -0.05635506979191253, -0.014521517409105199, 0.10442556572188952, -0.27684909433792104, -0.03702707257406471, 0.11288693267508856, 0.1818544957888763, 0.016503755895998465, -0.010929087476391677, 0.19341025040395088, 0.14290000239414163, 0.05055357885140983, 0.20291710520588868, -0.028832720848170013, 0.0993494589905343, -0.38285946294444095, 0.11234720346820908, -0.13923920585218774, -0.1370347629138881], [3.6363636363636362, -0.16674513966565918, -0.05309431592061251, 0.11473490385676331, -0.28937212691688907, 0.21944338220549442, -0.2561339978611382, 0.24233431034224798, 0.2091024082193047, -0.01812569296469632, -0.16394110083763486, -0.4485374771706468, 0.2957065691158606, -0.14624049276116297, 0.0010456544940270207, -0.19782186470419003, -0.2772573662025152, -0.21449156848968218, -0.3166837804686529, 0.1945310593433142, -0.14567011892706808, -0.10713335387333273, 0.14216879413086464, -0.0354523293814529, -0.2975127387114492, -0.3656335355965765, -0.03389894767616713, -0.055144317943833676, -0.18266874263751814, 0.22988573422071074, 0.13644188885834807, 0.1535644315900509, -0.10283950571242303, -0.008262595769410418, 0.11490054038151408, -0.3249720247035337, -0.0425037701195632, 0.11327989973454224, 0.17312487409855934, 0.055403391880153016, -0.051286922086726514, 0.22313883318869163, 0.12751181427528324, 0.05224546755606522, 0.18358823828601997, -0.020165334426603662, 0.11619634757856642, -0.3681765183919482, 0.12069600335625379, -0.14552259599876394, -0.0897509167018196], [3.7373737373737375, -0.21075094078385545, -0.004005035628129802, 0.07208761004332072, -0.2607466406353478, 0.19080906905055744, -0.29184662511533405, 0.23290830930845888, 0.2032945351442321, -0.023001996550582375, -0.20885862175601752, -0.4524472297277272, 0.2997805524467134, -0.11240990469170356, 0.030492912035843596, -0.24165875247868907, -0.2792409436225569, -0.256262985120103, -0.2878850506895498, 0.189178864762072, -0.15843812261332885, -0.06468020997967916, 0.1716590908984546, -0.0036399997849896476, -0.27174477767582084, -0.34465578400566954, -0.02763125713749835, -0.06646290215171409, -0.1679065649762957, 0.24772725412467445, 0.16821542486054927, 0.19609159338099127, -0.12608830797121903, 0.014868451068534374, 0.14251508334891988, -0.2920539058582972, -0.004171540722005332, 0.15950346906167623, 0.22124329337823276, 0.07980741961760425, -0.0133133096334241, 0.17399741682670541, 0.12155253383808372, 0.059972476806785927, 0.1960907566852896, -0.03167279770154265, 0.1326952725062195, -0.36227030123181575, 0.1683998096941885, -0.1845427882100013, -0.0810427672230103], [3.8383838383838382, -0.17169634631100503, 0.04525918811216701, 0.028176066477984263, -0.21874193634947675, 0.2060686913427665, -0.2909234753899654, 0.2811393306590358, 0.21795211492408478, -0.03318643856531582, -0.19945201032348917, -0.4844593235274624, 0.317974362701087, -0.06814395645930965, -0.004393082845470672, -0.2718269800144194, -0.3058491600714634, -0.25174350003891816, -0.29922067135949637, 0.15763913591913276, -0.18295504687794178, -0.058379630486332566, 0.21069588053206548, -0.039712193318343206, -0.2788339615718312, -0.3870450616332248, -0.00623673126911152, -0.04056147053889059, -0.1402810861623201, 0.21627160619135272, 0.18496608415382385, 0.16371279817279005, -0.1553135384096061, -0.005469404033676361, 0.09348812050943808, -0.2955017750124487, 0.03318827040680531, 0.18919385051739782, 0.20017938286780826, 0.12882015365536156, -0.01672071339550836, 0.2152523788073257, 0.09061657701989902, 0.04534576177797509, 0.17733416778471486, -0.01184404034680175, 0.1554481204934742, -0.37357037208378846, 0.142234836061949, -0.21594904669436943, -0.06833298480225829], [3.9393939393939394, -0.16400619637100175, 0.0945709253602715, -0.01068330185161042, -0.22064465975668865, 0.17047788594884944, -0.30404728013695276, 0.2793997250373434, 0.215795473101481, -0.03743766744342096, -0.17773934468515112, -0.48235821414229973, 0.31627894943227897, -0.11786037177834569, -0.04633631352158729, -0.2554930902053288, -0.3538654288423389, -0.2796118690517351, -0.25793658216280513, 0.1713518747721462, -0.21649210648889108, -0.08017962991648794, 0.18406212384437295, -0.004526719985888904, -0.30946749691866127, -0.4290012469930162, -0.024150988924567643, -0.0661386320029908, -0.0906933591129872, 0.1834731605075459, 0.20433874255190326, 0.18727765279601968, -0.1401930094287867, 0.033582951868911026, 0.10782711635183923, -0.2739399159366157, 0.0316322583662628, 0.19298936387446408, 0.18466820271161014, 0.14704694545632707, 0.009450434200901824, 0.22408436374073273, 0.04161094906188275, 0.03158168753426789, 0.22686630280555456, -0.04609552309957479, 0.18591219866665218, -0.35942329091626124, 0.12281201422528301, -0.16959582589073, -0.03933261210419074], [4.040404040404041, -0.139758227461204, 0.05557575845692779, -0.04375641103706733, -0.22468929275567026, 0.15857861300955475, -0.3291365412010992, 0.31711180328429256, 0.24389382963880188, -0.07010812658471766, -0.22355204959980163, -0.45541572303522776, 0.2667384685031426, -0.07138107813689015, -0.02639761211743097, -0.24251778961261022, -0.37453330753101743, -0.2931097663655175, -0.305859898065867, 0.16517631971973137, -0.23250424528973576, -0.07589542733712333, 0.15818757821702487, -0.009464934515905209, -0.33142893956284497, -0.4487210933767205, -0.005825677699325186, -0.03417103350290779, -0.07343247511741147, 0.15382513685666122, 0.20811440697313288, 0.14369297837674533, -0.18061360710167948, -0.015991243330582994, 0.14665245849314124, -0.3000371257541099, 0.03168888593869562, 0.15063037591544415, 0.2226404728799369, 0.13904884991062216, 0.042979600607011295, 0.21335411649945604, 0.08720528765104263, 0.02639029071293505, 0.1870237836087778, -0.0514587154914896, 0.18411202309225325, -0.3213641560420921, 0.11688217887380419, -0.1776545813880413, -0.08142157351296471], [4.141414141414141, -0.1267398338136664, 0.0720239030533218, -0.030987783086961925, -0.21479137720757494, 0.14915206626681965, -0.36550832899776503, 0.3079997253089909, 0.2502722755935301, -0.06459210411779703, -0.22496721625616162, -0.4306929952118126, 0.3024675422053818, -0.10490021140816493, -0.07191066428338469, -0.2010404827221284, -0.4126915202891752, -0.313285774309199, -0.3184621929210071, 0.13288163136358655, -0.19534752073885495, -0.08601943945108939, 0.14344915915598522, -0.05580220710972498, -0.357733984097077, -0.404388788243018, -0.0354542367015023, 0.0037176548980187296, -0.09615799822701585, 0.13325741395421725, 0.21054245298948915, 0.18552472682295018, -0.14651694490550732, -0.034945960619530037, 0.16347798194904956, -0.30030704650673784, 0.000700714448894732, 0.11085308445469076, 0.25050680865748504, 0.11077137581024907, -0.006022185481684504, 0.24294087528164124, 0.12560165585543887, 0.02216712388871508, 0.1372128519810472, -0.045398359197566525, 0.17890154748718223, -0.2884945698582103, 0.09569009641925497, -0.2222459846959343, -0.12922578115416175], [4.242424242424242, -0.11855561457378862, 0.0744225865021531, -0.037148473622977594, -0.20485949913514648, 0.16504860972408, -0.40357921578543926, 0.28997704793642926, 0.28518831282321017, -0.047034533836100234, -0.17628479036177253, -0.3942250782826723, 0.27586272287053165, -0.10919674238204263, -0.09537557405243775, -0.19176542049322054, -0.37240181908485365, -0.27994411773879363, -0.30458800682255316, 0.16395775153930026, -0.23137683288175814, -0.0812376766266614, 0.13889316622903505, -0.012525991165945993, -0.31573730428534696, -0.41448464927356693, -0.0750163452508244, -0.02742616137830002, -0.1353625380831848, 0.09191624054319458, 0.24408578600586872, 0.1662957848649207, -0.13735751847989663, -0.03841021971433992, 0.13103000746065752, -0.26692038593548933, 0.026238471034828667, 0.13707681049365533, 0.22855547227707515, 0.13366220581334415, -0.03611776656414235, 0.27465252426645803, 0.1446239437313156, 0.0009081987087976584, 0.13220566316598412, -0.06028144799706778, 0.19537452461244098, -0.299699710330516, 0.09743157240683145, -0.21747836315307062, -0.15336664358610325], [4.343434343434343, -0.1665117013710963, 0.04173757748302619, -0.00405809716258012, -0.20442215401177072, 0.16623087709542436, -0.4483404031397468, 0.30422390775297053, 0.2684370620862888, -0.01439174977306161, -0.22150215687169822, -0.36781289434452985, 0.2869919612935713, -0.12265762133410463, -0.09495665754510392, -0.23093874410299314, -0.4017020517986836, -0.322061444885214, -0.2785921459243598, 0.13603986262479273, -0.22806402001576725, -0.042691309306908946, 0.1600449499017685, -0.0320373514159988, -0.283205269382712, -0.45553039705578685, -0.07743413485248837, -0.047755270620356165, -0.13983641274514338, 0.05055350998392224, 0.2122314093641622, 0.14976962380289385, -0.1782683722020217, -0.016072915282947287, 0.1116340236064827, -0.24605200991416437, 0.036503308937147955, 0.16554527921964382, 0.25373248873741955, 0.15737728796361747, -0.0764323134515473, 0.25803643871575255, 0.11570556830013351, 0.02771415878591893, 0.1297050797654509, -0.10279217256653597, 0.20585029778252498, -0.3025800063663211, 0.10129994505355847, -0.25063341185612376, -0.11288839353613689], [4.444444444444445, -0.19550904360381025, 0.08603360197452878, -0.0300788782061329, -0.22373430103742564, 0.16448938748044856, -0.45485047167044196, 0.3251604523345703, 0.2872008966592711, 0.011005784867886097, -0.21361695945797304, -0.33256055009876906, 0.30522645361358974, -0.10505103039255134, -0.14123128778445665, -0.2379241595272612, -0.3941713975154096, -0.31386446550590164, -0.24607097623602503, 0.17744192641887768, -0.20956979072522702, -0.02606437418211123, 0.12286163575015946, 0.013843259249612008, -0.3037576617116095, -0.49377934945448265, -0.10885665904665008, -0.023008199279854417, -0.128388345896421, 0.0864201511380679, 0.1961357653988205, 0.10392505296725785, -0.1776251545482017, -0.03895169908548839, 0.10665021296030441, -0.2677861320216555, 0.030897249404853083, 0.1418914775727833, 0.2297713616293962, 0.17476685171659975, -0.1024018314005149, 0.30016275080172394, 0.13362147004581534, 0.012488751283967736, 0.128720817446612, -0.0878278446879805, 0.2182905744873569, -0.31960371400730947, 0.05696415542987322, -0.2951262227489229, -0.12087914536844571], [4.545454545454545, -0.1910405557859455, 0.06021961057215401, -0.061073607414159195, -0.2195990030025144, 0.16689156730884744, -0.4277799336117633, 0.3493951340075798, 0.26823348242125405, -0.035187588643835435, -0.2564610196660295, -0.3557708065639403, 0.2854198128125582, -0.12265457806463205, -0.13308035948868435, -0.2423279806788277, -0.37555097118826575, -0.3076280332195773, -0.2920342190341835, 0.17100511589549858, -0.19733072231957852, -0.06608000204052705, 0.09574560959848875, 0.0591086182194911, -0.3255552339676886, -0.4793801267287495, -0.15741745535071705, -0.0714910393813125, -0.11197002628683264, 0.1010191036318606, 0.18053528288227924, 0.07378119064369641, -0.1580117333037421, -0.019306532089448276, 0.10247501607944097, -0.2573093466369577, 0.07295921721903642, 0.1073086410044676, 0.19647694687225697, 0.177548939891118, -0.07925652215355457, 0.28997470724688335, 0.13453790865008025, 0.0008470782155569172, 0.08217838433862071, -0.06522183169917267, 0.2569245927778917, -0.3059888449130211, 0.08998067300931789, -0.2845073288550632, -0.10277901342495672], [4.646464646464646, -0.16412903867538034, 0.11011283745647521, -0.03988364155586763, -0.17710630866223523, 0.19752015463311956, -0.3926885153810805, 0.35984659672254854, 0.28431302857263374, -0.005676223453675133, -0.2784468452361987, -0.33285177391411275, 0.2951491104181256, -0.14139964401605612, -0.13131428734350747, -0.23388208980146558, -0.3512831281281289, -0.332444723870586, -0.26358034036624334, 0.18742184795384428, -0.24542291021448434, -0.04506436445202974, 0.10419314539204896, 0.08521565629071604, -0.32739853152032894, -0.4296377134107194, -0.13486955567961006, -0.034405030090901, -0.08982452758792231, 0.09408725869934886, 0.13249216108501644, 0.057662627108475084, -0.2023080390939626, -0.02629036251216324, 0.1152803232966316, -0.2912237615782296, 0.03235192253392916, 0.11714546362114552, 0.17601665139926947, 0.19249394993627797, -0.05007060488117635, 0.25895320867779287, 0.13794500307820612, -0.025720113036284787, 0.05561525784257089, -0.1045975264743262, 0.2800076358583407, -0.2963278214526867, 0.1396355348605209, -0.3344547732654962, -0.09874304647743148], [4.747474747474747, -0.18905951576154076, 0.11838221897146509, -0.004054149023189874, -0.13005122845921335, 0.22795926270004893, -0.38056024863812143, 0.39569075146171107, 0.26976049634788496, 0.009716957254409454, -0.25826466263565406, -0.31408723772301894, 0.2842483110810357, -0.16829337362546773, -0.13864420921057743, -0.21339687189185946, -0.3549496032189946, -0.3668890033512929, -0.2288577821965151, 0.15339965133099928, -0.20668802834657363, -0.057722420979192585, 0.06373656934213151, 0.12874797387859083, -0.2857329315070026, -0.39036987450288574, -0.11906690722758614, -0.04209752577600338, -0.06631771126696966, 0.08886305737232977, 0.15434081042535638, 0.09330403835794696, -0.2118669056922472, -0.02777684088687348, 0.12030606438867415, -0.302351949814118, 0.046021471698652644, 0.1479373358466159, 0.2143599055302264, 0.16418178771028258, -0.09269986657742882, 0.2639707430276616, 0.11350955092289768, -0.06312133233169842, 0.029070064267948614, -0.08644183063919729, 0.3143683031894671, -0.2574601607005284, 0.10321947090065808, -0.33882684313793704, -0.07276554911601149], [4.848484848484849, -0.21046994672085428, 0.08671011903452266, 0.0018514395364120752, -0.1404717674695137, 0.19272930631029983, -0.392571479798311, 0.41068143529051143, 0.2258917449621017, 0.02021628749039599, -0.2920324686758491, -0.3289991614308524, 0.28979413578849084, -0.18716545583901598, -0.09711761099776284, -0.22146809900476738, -0.33060464688268676, -0.35805957285992274, -0.24853190727261484, 0.14433800482933398, -0.1709102891932651, -0.09166720803570493, 0.10464820625728957, 0.17738649469966006, -0.24033454108833732, -0.3822100968968102, -0.12328958584709714, -0.05989347889193555, -0.02299100286465678, 0.047685907299661504, 0.1233524676596743, 0.13113376090823395, -0.2571936650952194, -0.04178691515867343, 0.13882385079765433, -0.3355702122946577, 0.0370479469782503, 0.1590737332719135, 0.23467669006403047, 0.1838019095188191, -0.04896910589133126, 0.29638798014346496, 0.1392503558241175, -0.025663143786785532, 0.06033182344450131, -0.11263714621794794, 0.36306450871373414, -0.2915547158803791, 0.1448658455749361, -0.34201789328026866, -0.08319368482313078], [4.94949494949495, -0.17523043793672366, 0.07539466122630169, 0.022293480365297786, -0.11059724021397979, 0.24207466401836958, -0.374580376156587, 0.38773002421025304, 0.22028259348197524, -0.029703799860757284, -0.29280381995569454, -0.3160592453747929, 0.25012654741047535, -0.22088597998834397, -0.1045386376703613, -0.1949414699503928, -0.3480191607305123, -0.34737522565944695, -0.20289400316501296, 0.1640357934774227, -0.2000529555822198, -0.07178669918368684, 0.1177190043016147, 0.1413413779972674, -0.25863870916124787, -0.3800070710089693, -0.11949598043672564, -0.031964862354443596, -0.05465560212237072, 0.010516398110179938, 0.127176442973981, 0.1773836685721771, -0.2208004173833956, -0.00992812591956533, 0.13531000244080071, -0.34907662792490235, 0.06252914661093696, 0.2090076215271477, 0.22883781956992877, 0.15897385849857715, -0.06639245949415563, 0.29045526485198986, 0.09467110688266404, -0.047282314316039416, 0.0995811518706533, -0.09924326273110616, 0.3582332967493271, -0.30871016739640844, 0.11687517524434138, -0.38595339742054985, -0.07103371593841899], [5.05050505050505, -0.1277297885760649, 0.04436201411751665, 0.03280468391711569, -0.09708842543888714, 0.19885143759348867, -0.39320382573061513, 0.4235775107733586, 0.241115178458585, -0.0783923217143937, -0.24734924882594606, -0.32700362709247854, 0.203092631380201, -0.25809420315207676, -0.07361956318351957, -0.23640542781387275, -0.37977366734392926, -0.32438824504428115, -0.16341375587481516, 0.12259205885352462, -0.1821494636621579, -0.1215194326506123, 0.098507268160652, 0.18004458779518046, -0.28582922538114097, -0.42109444443306443, -0.1658570266586884, -0.07979899009366691, -0.07239555016850391, 0.01895826139811483, 0.15362770107378365, 0.14277321482498287, -0.23208938020092282, 0.005361287860418333, 0.09892324031109809, -0.3521486924355987, 0.06377218895600398, 0.2406315958711835, 0.2678174704339206, 0.15677969307376594, -0.07001220004861226, 0.27549161422788593, 0.10118578236210295, 0.0014310755604487954, 0.11598441061731865, -0.10570962721040286, 0.38847315966592644, -0.32909026115137585, 0.10209861696271107, -0.3477356396333522, -0.037986425266500694], [5.151515151515151, -0.08924445922695434, 0.03543908142004765, 0.0387264122439197, -0.12409150891398384, 0.24843301828972814, -0.3705400274306834, 0.3916600075740375, 0.21685704423993174, -0.11368183678063234, -0.2384137325894218, -0.3255607676846276, 0.18644871132181653, -0.2924046733233401, -0.11763276177637237, -0.28225147602294426, -0.42472137985399006, -0.34377576465682036, -0.1822149182781221, 0.12897527844556905, -0.15028953999796035, -0.15487927214203803, 0.10098700150232265, 0.14186365481236135, -0.281708310455938, -0.4228856278463888, -0.17093346003169804, -0.12490651474117767, -0.12197815798931849, 0.008544089367594866, 0.19042938933777365, 0.1321374082639479, -0.2502654333731516, 0.03455304300719448, 0.055131101232356074, -0.3729108040154138, 0.08325540656964643, 0.2892288853925271, 0.2665599907142017, 0.1503626206307387, -0.08099880101859776, 0.2901825073830877, 0.11670137891956857, -0.04277050522185042, 0.14291452373207517, -0.07364744092649289, 0.4370440671939006, -0.2795270803041421, 0.07787798448081837, -0.3526701253290224, -0.06408381180164013], [5.252525252525253, -0.10329367483326411, 0.04490708831021819, 0.07476583133467837, -0.16897079962769013, 0.21077798755505903, -0.3290917083219452, 0.39543051908884475, 0.22869334702799493, -0.13711944491265166, -0.22775105056834766, -0.34516441412033966, 0.1919905232282375, -0.3150463645005551, -0.1587960071700334, -0.26050924489156013, -0.44946485570430383, -0.3176679643942554, -0.1930867957858023, 0.1688240054614083, -0.11055325501716193, -0.15107770085665928, 0.0799599522767263, 0.11946763486606914, -0.24409721912614746, -0.37671637483291204, -0.1902080590654208, -0.15715510756322032, -0.11307569672811127, 0.045669196565375686, 0.15750750376246636, 0.0869752028140319, -0.20743872370938574, 0.05008812025243807, 0.07349676801498493, -0.41026835899544817, 0.04068601837076509, 0.3117088605164987, 0.28532034831720965, 0.1588305047618467, -0.12177606557798688, 0.242757805376363, 0.08635542553975822, -0.08481054708348487, 0.1498293695667864, -0.04703701482322527, 0.4816705840983016, -0.3286523493894209, 0.12318998381553992, -0.36796486354925695, -0.05422391982223825], [5.353535353535354, -0.0934077802456894, 0.06656569762305217, 0.11674136724968535, -0.21612441901055496, 0.1669709073483991, -0.3696021602479896, 0.3841235108421929, 0.19085587487949032, -0.18106999408479985, -0.190952396164497, -0.315464438067473, 0.1931768715468693, -0.27547422214664763, -0.17326754997921934, -0.23562064434232258, -0.4065573423613049, -0.2740980588643533, -0.22735519940103238, 0.13564195084134403, -0.08640540868336714, -0.15139016616049145, 0.09080316171629443, 0.0701634719849066, -0.2917371280700722, -0.3345075852456752, -0.18623639365776878, -0.11263813596933213, -0.09767640342353372, 0.06174456274067343, 0.1984849570652287, 0.12836151595563014, -0.2297308707980191, 0.06073336810291393, 0.06434370545062203, -0.39511825945756507, 0.027943332064218118, 0.3164230882634588, 0.2363713950904028, 0.20336038916784702, -0.08255718375900839, 0.19851865994060866, 0.04335762708200372, -0.06752074262546355, 0.10586413841101747, -0.03470837323771606, 0.4657993159192571, -0.31938635613679417, 0.17003471835972248, -0.3296776801596955, -0.09727310442439216], [5.454545454545454, -0.10792821907995942, 0.06525484585996452, 0.1517020998255835, -0.25383964382017804, 0.18737445152622104, -0.3531044650647644, 0.3960820317695765, 0.20458830568996336, -0.20528343099983262, -0.1472976024800385, -0.354682130550492, 0.2021975585225391, -0.31743153220763715, -0.20849875124156467, -0.26565708892414625, -0.38757250559286094, -0.2843767673221486, -0.23396313745026964, 0.16938078416742383, -0.07919279349439919, -0.19963272366914273, 0.04844420232282038, 0.036702424452052775, -0.30269233084532643, -0.30092828254472903, -0.19976123128037054, -0.15561570864166202, -0.14721001058265112, 0.09258464783315581, 0.218303533521925, 0.10916282807003258, -0.20168507738449792, 0.1032922498916089, 0.10055261381645719, -0.4093748645529118, 0.013685568179395513, 0.3001499687663603, 0.2604693658186154, 0.19013849716088807, -0.10730277549651254, 0.24659172823503006, 0.0912973978990809, -0.10134224417723672, 0.05960293674474674, -0.03281929423984111, 0.49400363853023804, -0.31724429762138684, 0.18022046499185798, -0.285299069620926, -0.0718776022409289], [5.555555555555555, -0.12390919754289484, 0.04621382763663498, 0.12714875337502896, -0.2818183920368142, 0.23347241682400938, -0.3674171856596453, 0.4009406623668866, 0.1604174803818015, -0.23237729769799625, -0.18288155648687643, -0.3299306624043965, 0.216743829658099, -0.2700306713526488, -0.18927566198736953, -0.23807989016512665, -0.40566363198704625, -0.2497319010465367, -0.20384839633879964, 0.14482466797547644, -0.09691415942304561, -0.1997677530275781, 0.08319594481750835, 0.031827634156295914, -0.2926912837413136, -0.30450241364041775, -0.21552155978748824, -0.14975420517026364, -0.16285154000606764, 0.0740554679145974, 0.2032602757384318, 0.1340128296045789, -0.1798984125069169, 0.13159254045254015, 0.0516331781396025, -0.4592730404000028, 0.03814562170929136, 0.2646133054292599, 0.26415630334627516, 0.22490751786275923, -0.11559408709602942, 0.2810323330662178, 0.11627985391971413, -0.06699463327921364, 0.09729352830270085, -0.017109904076987523, 0.465312631011988, -0.32041902238320463, 0.22830922504294596, -0.3242795538261388, -0.04965877860596435], [5.656565656565657, -0.15610109859231436, 0.05395796491941972, 0.16490430760370606, -0.2489161166667319, 0.2546875116142433, -0.34118809363341174, 0.39733006356876804, 0.11517989050454319, -0.19996892058829813, -0.2051808374667981, -0.2832398050035778, 0.21658470891080597, -0.23992260467957632, -0.16074644666810112, -0.2793084467966598, -0.40648976355035, -0.2347755786948414, -0.15749441358589172, 0.13294864366139042, -0.14368147177323212, -0.21836581248098794, 0.05655665288518125, 0.06673043004418219, -0.27296222206649146, -0.33842836256968545, -0.20188776325287222, -0.15699718700544224, -0.1525809694308667, 0.02810336718292729, 0.22805169350139975, 0.15197307617414715, -0.1533284774172503, 0.17305562974596783, 0.0358706081180102, -0.44095054978047005, 0.01507748735536876, 0.25517322634848116, 0.24375716117044155, 0.17784600304228207, -0.16325798477243125, 0.3199962779140417, 0.07509983155583637, -0.08868868830577926, 0.07301716762343305, 0.006021554145227995, 0.4502847919942133, -0.3460382930536321, 0.24964512822753493, -0.3630110084450721, -0.06798599933224178], [5.757575757575758, -0.18233167772990932, 0.04812874687629401, 0.15841732661292862, -0.27036693389672795, 0.27099564384631675, -0.29668752451830943, 0.4299745473919036, 0.1163743464249364, -0.22978347193311086, -0.24264864374126932, -0.31752415425914876, 0.20189762317762686, -0.23186033070265927, -0.1690326481873895, -0.23586583742762338, -0.42125094189377627, -0.22847411479988514, -0.1649985615648872, 0.15051869667681791, -0.16195582433866024, -0.1886816520001882, 0.00849539276291552, 0.08144789700974314, -0.26229886810298225, -0.3392246301654008, -0.16836513560996139, -0.13848567058426875, -0.1353526401980224, -0.02081151450062703, 0.21319804117925759, 0.11798657863579305, -0.12356225830168668, 0.20639031838561012, -0.009776825557864001, -0.4856202017708769, 0.03666387643109742, 0.2291504199784939, 0.22036102298601762, 0.21080356677161718, -0.11808559198005258, 0.2934248249549176, 0.07687450012554786, -0.04396051948772585, 0.10521083382630925, 0.05440653456803332, 0.4921684882674693, -0.3026543533728661, 0.25787021428400764, -0.37425370151550374, -0.11291826140134562], [5.858585858585858, -0.22784544948383179, 0.034096557136347634, 0.18136676100937943, -0.2422605256336188, 0.23436314006877318, -0.3243133042331695, 0.42007433013442097, 0.09630584551341134, -0.19167423937024064, -0.20417656492551783, -0.2802345690829376, 0.1906986032003014, -0.18329482863418717, -0.1866978702105673, -0.2670112938111814, -0.3858543171200672, -0.19895615964093244, -0.1790878516436601, 0.16565998562987014, -0.11312279681350965, -0.15716679266409217, 0.022588779312447772, 0.03552373743331796, -0.26969265112132357, -0.3117844088097089, -0.20218687878519315, -0.11802586420179968, -0.0999966893828837, -0.04679816066155317, 0.21842816824488345, 0.15229223097623226, -0.12308634428742488, 0.20887853411776236, 0.0305561465168983, -0.4486515915640363, -0.0025046919685220784, 0.2231418026085444, 0.22745691734431192, 0.23710761886144688, -0.12285655544712135, 0.3213470836378038, 0.0956683033760804, -0.059827893975486934, 0.14975768730057648, 0.038819075428928214, 0.4777057070302599, -0.31553916265908977, 0.2655292124528163, -0.3718896639332044, -0.1043078990452232], [5.959595959595959, -0.22730230652025285, 0.016229750337228992, 0.17263083776325885, -0.24179394437395088, 0.202397656991608, -0.3685879823077485, 0.4320246581112609, 0.08094945904746832, -0.22023778880166467, -0.1715027878790708, -0.2587903857315135, 0.22107183376262665, -0.20341219058436866, -0.14508716549766984, -0.29646911633990547, -0.4105259528284005, -0.21879340011692316, -0.15825461789743525, 0.13618256911647397, -0.08393739454581911, -0.18091435893914753, 0.03913563240660104, 0.054618725072293005, -0.2890991715123207, -0.29398880500286445, -0.2211194661894031, -0.1002614063337851, -0.07874364493772326, -0.011262462162918298, 0.19898733504716368, 0.16690149384146907, -0.14815954676650955, 0.2316333354305601, 0.06791597573983761, -0.4058637317401269, -0.030157103128978582, 0.21988427457860166, 0.26008978029969787, 0.24242943259000588, -0.09704403816659676, 0.34504171022717883, 0.05017030032402553, -0.01791884826337787, 0.19667222081362598, 0.07150021246808033, 0.5164328609087319, -0.27727398836473555, 0.2545696167072749, -0.37220283632215706, -0.07020785835683108], [6.0606060606060606, -0.23967706109051656, -0.012949525643168744, 0.1417144423443811, -0.2779490519962924, 0.16806924388383632, -0.3543077972844347, 0.4320955699446404, 0.09587120250783794, -0.26111303874437747, -0.12196689976979277, -0.2738579934235933, 0.2228665370858785, -0.17477105340043803, -0.11134589292703952, -0.2974098626724841, -0.43215036272926366, -0.24120106792006651, -0.15121270007262166, 0.15328998591126713, -0.1244310135362538, -0.17684301539604566, 0.04856628551565245, 0.07903553179040892, -0.24353180920213252, -0.34244257142081047, -0.20104288440523402, -0.07085048341074757, -0.048112828852406586, -0.006531216365979332, 0.18050102201976606, 0.1755086175117375, -0.14119374509233532, 0.21691436130599312, 0.0786749284449108, -0.3617538308474327, -0.00042758731193490856, 0.17557034093609325, 0.27757314205038985, 0.22031077824447454, -0.06671924983176764, 0.338329427047132, 0.07682513647777682, 0.029398777466455334, 0.17941974811398825, 0.026657401273233516, 0.5173006992108523, -0.3272251191219895, 0.2191810567110636, -0.36609181755264253, -0.052267916097646715], [6.161616161616162, -0.2303965209929279, -0.017823663236985306, 0.16231639433999734, -0.2501453967628946, 0.12711659201171938, -0.3954300864291494, 0.432184520360008, 0.1407600295186995, -0.2365324593920669, -0.09057993819069174, -0.30505019641788284, 0.23870624566093446, -0.13509478163168262, -0.10164987514513607, -0.3260942522962874, -0.46307308252095564, -0.23568692643473632, -0.18798923850749766, 0.11400412270126944, -0.0924088132916922, -0.22684155353913313, 0.04309980131569733, 0.0635171212461794, -0.2898523891030938, -0.38422818439714024, -0.16098776000503723, -0.09800362651582978, -0.036549533751477445, -0.018239378544886123, 0.22084985506345617, 0.12894312991975687, -0.11743632899032469, 0.22164348068927603, 0.07800099733347289, -0.329407274881568, -0.04321641859637596, 0.16153119623145845, 0.31640556107676365, 0.22363398133677007, -0.01859087829713097, 0.3379378724543321, 0.07111222822384806, 0.04275647550553288, 0.16149413168518278, 0.028002905219188235, 0.4985274363190384, -0.36950777404679813, 0.18858757466315662, -0.3682986981582199, -0.02958926341533142], [6.262626262626262, -0.21740233343417817, -0.018639372210579916, 0.13637967643298263, -0.20801221741081033, 0.17430320683622264, -0.378636244929284, 0.443074830741682, 0.14238421743648702, -0.23609845588680345, -0.12866536813103271, -0.2658823960645993, 0.1975264300349855, -0.13554343527965124, -0.07701910540025864, -0.2981833592632551, -0.458082973061993, -0.27928000013656284, -0.18943474692119472, 0.14573928372951683, -0.1261833132678242, -0.1959100467290977, 0.0005688333481782201, 0.0452376401295007, -0.3155938798301242, -0.38040694756297516, -0.19744739638616182, -0.07474033768727405, -0.07049828915430897, -0.05597873388541254, 0.17915072232477552, 0.10220643731448001, -0.09452807807671619, 0.1873883642219923, 0.1230914570912026, -0.28922590105965, -0.057883007487013506, 0.1312370535917159, 0.3475247959242972, 0.19406465366336292, -0.01700313327013992, 0.3626996444277666, 0.06809064230200344, 0.06666771163703494, 0.1489949876154089, 0.05775681853870064, 0.4797680806876024, -0.357143872629922, 0.14983052466257119, -0.3869258661368113, -0.006531966223612778], [6.363636363636363, -0.2531423019895498, 0.02126825926879121, 0.17151211911628217, -0.16371035420719118, 0.17528931986471263, -0.3679141064161712, 0.4926113548412719, 0.16373856151250935, -0.22747825155846668, -0.08551168977960408, -0.28135009815899237, 0.19476333423258363, -0.0989412402642397, -0.06396639153617212, -0.2864201702125539, -0.45588673221596165, -0.27962875038953916, -0.23397393427474983, 0.16561335156599638, -0.11625588868756143, -0.2413592427497541, -0.009321163835014381, 0.022564848214296614, -0.3039487544311844, -0.3949997619419334, -0.14983680887637826, -0.08668340358150999, -0.056745748982749394, -0.08994046699800576, 0.224634546542474, 0.08324829981067346, -0.1389750923536965, 0.203113312830485, 0.07807593207378916, -0.26005876179105913, -0.04642603205761103, 0.11736858112164908, 0.3571554015451788, 0.14701028055626522, -0.019906350168821224, 0.3404352135853268, 0.051278240416461465, 0.04953694309353059, 0.11576302202813049, 0.07154166711900746, 0.4457948000007498, -0.4001507447189515, 0.19602459098948113, -0.35438769798773173, 0.026860121100654038], [6.4646464646464645, -0.2097581720429079, 0.04420430537173533, 0.20392234804214085, -0.14326677448079683, 0.17037706749481782, -0.4159541244388869, 0.46740630676293576, 0.1723546863913908, -0.2410626402389789, -0.13481302050649338, -0.3108060068991558, 0.23486527719560366, -0.11485667627529988, -0.11250992666780466, -0.25318411791588125, -0.4909928385562071, -0.29191199360661363, -0.24137203301664337, 0.14941663957116008, -0.13511903371671669, -0.2657292510846351, 0.025932106575721172, 0.010928321029131344, -0.3017888750375932, -0.43091747476793363, -0.10782996020288944, -0.1366112227105426, -0.06718585104063939, -0.07194708233165659, 0.2145047125461651, 0.10746285028081544, -0.1327847412415711, 0.24657756082068122, 0.12070355233832158, -0.21871834495060916, -0.0298082220064786, 0.11656138114167269, 0.4049860137248158, 0.10829730377826527, -0.01209262661916452, 0.3309028032565096, 0.03032063053727964, -0.00014058449933871536, 0.07725038121033304, 0.09641408264471699, 0.45188982161108726, -0.401972559051221, 0.20014751572725023, -0.3173736968510872, 0.026319561176863675], [6.565656565656566, -0.16512018396199776, 0.07121328266370489, 0.2064435267035379, -0.12387512993320596, 0.1533471653445391, -0.42657479000311305, 0.49124964735213716, 0.16184827020493012, -0.23573724428486728, -0.13097339556124674, -0.3498663331203311, 0.22946500990770544, -0.09678712642714657, -0.14621402897654637, -0.23261129538193198, -0.47214238803797953, -0.2661617304870919, -0.25510249748606306, 0.14707608248409043, -0.13182695711171877, -0.28016880406792155, 0.0011950463725856723, -0.004777241254805015, -0.288429789665819, -0.4167061292881698, -0.1324535518342902, -0.13466833364411276, -0.05279667050481539, -0.11268530263414597, 0.20963555787152002, 0.1438522651345186, -0.12242397701247232, 0.2650505191106517, 0.16923096618088002, -0.2424132721905869, -0.052086632180591674, 0.12419470037631153, 0.36152734020730637, 0.08369130201179589, -0.004973889369612455, 0.29018030613996504, 0.002483109073609671, 0.032935113999467636, 0.08866947844316175, 0.131175779508932, 0.40580914033673343, -0.43258455064792517, 0.23574749895449623, -0.27227417672580423, 8.897692272758287e-05], [6.666666666666667, -0.1548905181889112, 0.05875720741990371, 0.19507760613415476, -0.11921994859645646, 0.15269836954948657, -0.4306240597345013, 0.5342540391701943, 0.17902992273394003, -0.2044527743742403, -0.102723241341503, -0.3308729829424136, 0.19391309550560532, -0.12313486868786853, -0.13723390327005333, -0.2055189210615059, -0.4310943556241511, -0.28624921519967644, -0.29779408322111584, 0.19523173840935987, -0.13515339202172932, -0.23486147702573515, -0.017571723121180452, -0.016493666976374496, -0.3029990081009856, -0.3798376595372337, -0.12218523441142407, -0.12831151561545126, -0.013837103504671815, -0.06579510872625938, 0.2422601435262911, 0.16361939437991146, -0.15233357646884266, 0.2971500256580739, 0.15874284352019677, -0.2183201296039642, -0.035974785622247984, 0.12447287192187259, 0.40095618561199164, 0.08998293889101097, -0.04648322679743678, 0.2603687975846981, -0.00826523811384978, 0.08054813685574364, 0.08564156921033378, 0.09032975013645919, 0.3847795116819147, -0.46074699193794355, 0.24315486650333717, -0.30973459973243156, -0.03952126211943563], [6.767676767676767, -0.1661138901562481, 0.043131160943442146, 0.20416568520764722, -0.13229822562266816, 0.11705846805754483, -0.4785104585784258, 0.5426952467397371, 0.15274698036161238, -0.24044544863280107, -0.06383631616871181, -0.3774394149439683, 0.15029371509688766, -0.10493850969953206, -0.18602709421012886, -0.20455416449914596, -0.43295851110391276, -0.33164495193591637, -0.2803617169786963, 0.15287788487697404, -0.09527221565473859, -0.20281127698242446, -0.021181566550555756, -0.013998788935466074, -0.3155729765218507, -0.3382954972100973, -0.10076542884155451, -0.15537632237405835, -0.024526344508023205, -0.11465833474456275, 0.21621727411953703, 0.16433270146554638, -0.13332369592823395, 0.29260270639132824, 0.20832419131101138, -0.1755720932350423, -0.016126577774528736, 0.13185362835399625, 0.41319944715632906, 0.04687321271521705, -0.06768295691538387, 0.24480877810589438, -0.04040970950042737, 0.09497286748449689, 0.0684890936135168, 0.10956992590912364, 0.42359978378601565, -0.4565387815058425, 0.22933138409154855, -0.3209968526134988, -0.07505951924494238], [6.8686868686868685, -0.17979508974531314, 0.05863468154337439, 0.1679180466984298, -0.08405146814996886, 0.08215049714159256, -0.49114136844392403, 0.5807599619476311, 0.18756789498511714, -0.2636829384208312, -0.08329875341155941, -0.379462306940878, 0.11990642396451609, -0.0776386156316429, -0.16453644908604576, -0.23477869950184385, -0.42543426788446137, -0.34564207618758747, -0.2490954100132381, 0.11745190293144253, -0.12349371348788375, -0.17272241641049502, -0.04270530190536859, 0.011330523199815527, -0.34271722471010424, -0.317831326670133, -0.14287034963507358, -0.18098799768700963, -0.022142410957975603, -0.0740730211091769, 0.2660460424203685, 0.20968097640350689, -0.10765771097305932, 0.31323149986674725, 0.17409850668491206, -0.18372410934881292, -0.020496702208701298, 0.1546958268425026, 0.41058207709398575, 0.09607634295734863, -0.026540598099789973, 0.2632386808609559, -0.0009681701489522229, 0.12714145545513178, 0.06541577992340351, 0.08165708009814307, 0.3812852872612159, -0.4326206713083107, 0.22606559354865127, -0.3609642733128504, -0.05630828204366215], [6.96969696969697, -0.20936056205844872, 0.07973848086442414, 0.19874508748759062, -0.1274905456072184, 0.11368435508758032, -0.48458465474631407, 0.5999658739281979, 0.16681521168616836, -0.23972808339504836, -0.06883100301800124, -0.3776316394419454, 0.16175921789592748, -0.08315287956457416, -0.17757699582196437, -0.18655151966421563, -0.41954323114773684, -0.34839552707796595, -0.27906901614003315, 0.10374490237207393, -0.15036791640472313, -0.221213502586518, -0.06217611571707486, -0.017454816722156406, -0.2947440247990833, -0.3098681803880624, -0.1682566988923519, -0.22918480613597236, -0.06794768350432431, -0.06466518282763792, 0.22077482689128722, 0.23409859276689815, -0.08058668476069666, 0.3307250268810488, 0.2054697945418179, -0.16197102473926675, -0.005717017243182762, 0.1820817939469413, 0.40294424481002616, 0.12089917509452096, 0.006215132652660632, 0.2423565001958352, -0.05087931149958453, 0.17043062369839557, 0.051598599382631026, 0.13073346646614242, 0.3335473286002759, -0.4042233423850002, 0.21836749637805725, -0.40126625948751815, -0.06896418233146288], [7.070707070707071, -0.2316840559188152, 0.041092238386291766, 0.24532766901203912, -0.08772271453299184, 0.08481254346721649, -0.5336971370481578, 0.5851077018686156, 0.12888084429113275, -0.26234847558387125, -0.1063390683531153, -0.37171318585400603, 0.1812476625442168, -0.12131832101073992, -0.2149264307344716, -0.2161214099599918, -0.3822881555504437, -0.34190672188122184, -0.32115228494370474, 0.13512531797869198, -0.12603062659791972, -0.19415728817776862, -0.07592485203919229, -0.0611145656927235, -0.33189030157931554, -0.26671726398488194, -0.13668262701326023, -0.2190340167532006, -0.05606565999468606, -0.033934896755040425, 0.21051271937514332, 0.22214638280528246, -0.04985966234624522, 0.35055519314815053, 0.21888089872360486, -0.17343748870512685, -0.008433075471702597, 0.21402705309346826, 0.4157125407587543, 0.13975169437773555, 0.04003954867846873, 0.2545825325857403, -0.08872891086671184, 0.17295747514662613, 0.06285669818665374, 0.14903842621739505, 0.29471827862207456, -0.3970859948777962, 0.2438085826008402, -0.4490095369546362, -0.03991882142504366], [7.171717171717171, -0.2570304677984602, 0.004395107323649269, 0.2733072494353326, -0.11132961562350477, 0.043466775702945666, -0.5674126024093241, 0.6171776469537905, 0.12199926375069728, -0.25266232914318043, -0.09548063831683949, -0.3260285288509944, 0.13430441224224976, -0.1642446708747724, -0.22288415389840863, -0.24289272337151951, -0.43091668376030173, -0.3016617092509437, -0.3511712259805401, 0.12096850763138842, -0.10970650587980087, -0.16765259744388689, -0.0760172606342475, -0.09108469471922473, -0.3378339624135194, -0.24827311876203323, -0.10354817586375584, -0.2447956429504359, -0.036707990980704056, -0.012607244858174983, 0.25338350497835466, 0.27183882635158574, -0.03025317927952912, 0.3825771676039972, 0.20826963295369522, -0.1999722155947655, -0.017841126339853138, 0.2573016080503267, 0.38744782107818426, 0.12870806719915623, 0.03882799012280602, 0.21093761451311582, -0.11133327160881852, 0.14890813859950727, 0.06643135191485589, 0.10075769320044595, 0.34438877178347943, -0.39324957733419275, 0.2653017596760839, -0.48935434176718745, -0.049589641251788316], [7.2727272727272725, -0.28966966762443974, -9.869157383355504e-07, 0.24724075764491454, -0.10388203142117092, 0.03219251745606739, -0.527599428712034, 0.590886143072921, 0.09919441982372845, -0.26880008233814495, -0.1265307943767548, -0.2987348615711478, 0.09109584748723956, -0.14419934060322254, -0.19700290752755523, -0.23104747236401196, -0.479252750750703, -0.3125344737926895, -0.36434919307040914, 0.07599871463648235, -0.10389202348342243, -0.17137137527354485, -0.07622427111142943, -0.06503004725147438, -0.3193672841412798, -0.216215049840868, -0.1164873089318473, -0.2007994835624765, -0.026157921377998897, 0.009612561545179532, 0.2642426680377768, 0.27998471078408116, -0.07907204055095046, 0.4262353666059004, 0.25591037291969465, -0.20211316277074035, -0.016551616534145303, 0.26820408095129794, 0.36078789146393075, 0.17232461569960322, -0.0028218062394992707, 0.22216863766322392, -0.0699131308875118, 0.16634510946378073, 0.06810457225452343, 0.09153286068663505, 0.3414456482016705, -0.34722884591853037, 0.3121004876761477, -0.49139831254607885, -0.0012399495029424348], [7.373737373737374, -0.2430086981757074, -0.03402736389988732, 0.2839667989557576, -0.10259540461179215, 0.07153285885827904, -0.5420560968539162, 0.6330555099211652, 0.07656704743192579, -0.31163970287664394, -0.13262421243877565, -0.2764046117186733, 0.0847129522015115, -0.14266027878844528, -0.21230718532340756, -0.23709571727608902, -0.44243340936848763, -0.28296166098399755, -0.3636704830581366, 0.11576699200105811, -0.12838554803063876, -0.18196876532455739, -0.06665259018453237, -0.09517361751622352, -0.31511453161982517, -0.1786381922283446, -0.10142452560715888, -0.1916680284509823, 0.018189702677695277, 0.055886007930861986, 0.2554112425990049, 0.2856616764731803, -0.06977346626925442, 0.40017643414948445, 0.2462466760454758, -0.22121066732732464, -0.06415839275467533, 0.3125077575759886, 0.40029384348642894, 0.1785230037291675, 0.009310289538694838, 0.2585664504919341, -0.07647921386276019, 0.16596035235496412, 0.11253264543710907, 0.06851106234878357, 0.39047415239844213, -0.3464959237370604, 0.2636725713713565, -0.4820125092318126, 0.017599330863992475], [7.474747474747475, -0.19730743814042756, 0.012136826477577259, 0.31477830024512765, -0.09714772380459874, 0.06439718865256529, -0.5610807453371689, 0.6749404003765737, 0.09078730436803839, -0.3117800153069585, -0.08558295213663801, -0.23857311930706077, 0.09562251037454605, -0.181172692161109, -0.25859202307798035, -0.2743369943107428, -0.433204407709661, -0.24848278890348702, -0.39961195827166696, 0.08310064960783514, -0.17246967161877677, -0.14320560192285733, -0.09445162266131057, -0.08395097840978809, -0.32029227413913525, -0.1840559883998641, -0.08905720642287941, -0.16138303386462857, 0.030227681856311698, 0.02477950867259752, 0.25705125800688033, 0.333242266668444, -0.04501383405176771, 0.42000970164633883, 0.28270271617591414, -0.21395010201614273, -0.10506208342981371, 0.30013322484227783, 0.41031043533186556, 0.14294126769076904, 0.03617782556835228, 0.2502535715104841, -0.043410491469375374, 0.1537472548395046, 0.11238015655986404, 0.06573595500222557, 0.4140925262301902, -0.33482229132454855, 0.25342389839959434, -0.4785482232566313, -0.020801086585174575], [7.575757575757575, -0.18751006970753548, 0.04589840096375824, 0.2711464126671745, -0.08243099062175882, 0.09102758987058644, -0.5528650775108584, 0.6878934715601482, 0.08577853721783944, -0.2903308843458877, -0.1287736766131806, -0.19199325516556306, 0.11324753755257196, -0.2069737018405663, -0.2845369444462825, -0.3117526807204478, -0.4254983493598057, -0.2240252691238458, -0.44453395366463344, 0.044043721050524585, -0.20468883075738595, -0.171560364284088, -0.12091651062369778, -0.09207181990401393, -0.2813361037508388, -0.1914793651559059, -0.061904990828870556, -0.1211950593568362, 0.012303967891984683, 0.05659363330414652, 0.30257224223148915, 0.3685786681949475, -0.07300875754696103, 0.40870271846910056, 0.2724598148916579, -0.2523549391942691, -0.14093981200330263, 0.29792805532445576, 0.37109028486329515, 0.16743058381771095, 0.038159720899043244, 0.28220081154119087, -0.037420589774650695, 0.10993293517304109, 0.09804598363947697, 0.11388680015909913, 0.4510435533405622, -0.35500604936237024, 0.28643825358969827, -0.5242205975342311, 0.027128982358210412], [7.6767676767676765, -0.16437999440154322, 0.047914469667550565, 0.24426924307205478, -0.11388357471631078, 0.14055413007232714, -0.5506486153180269, 0.6891157832635593, 0.12662701450475503, -0.24126745806857153, -0.15825639038706524, -0.2080231849371052, 0.14696645180648799, -0.21035868073433267, -0.30020580957128506, -0.33573210483315136, -0.4726299286927315, -0.2407720001614303, -0.46989794556731906, 0.02379802721995839, -0.19013966803578972, -0.16855077280791464, -0.1123234972519573, -0.05257196878885602, -0.2521540897216764, -0.18966984270045556, -0.06124327676782041, -0.16319343205046874, 0.019984811435188935, 0.08319253683529843, 0.34008497968818796, 0.33202761371878164, -0.12091584303652891, 0.3719833954196821, 0.2566403992521477, -0.21103036331790223, -0.1690097707678583, 0.3198403946838681, 0.3230801494431094, 0.1434254794159225, 0.033518244015199476, 0.24932286816204102, -0.03506320998181409, 0.06800676936682307, 0.05764021593235995, 0.0903680095199577, 0.43105459243204486, -0.3544081470433134, 0.32610288130878884, -0.5364568912780611, 0.02405165699148814], [7.777777777777778, -0.1803414721177996, 0.019741695440366004, 0.2532377879424075, -0.13668575428540863, 0.0925604151618383, -0.5124030383828544, 0.6691009353935471, 0.1541667313108256, -0.26065103664912737, -0.15749919629296366, -0.18533466330626774, 0.12082907004847074, -0.219740690387275, -0.32954048717038553, -0.29471336084687066, -0.42819154452584557, -0.2644757860928701, -0.4556809081306907, -0.01448531449480605, -0.1520968406237253, -0.13122884920349942, -0.14619244868208647, -0.1008823675070751, -0.22376998079705473, -0.14325327234101132, -0.08251924186898857, -0.19027802110453373, -0.003867734786547637, 0.12252688803118097, 0.34185820155940605, 0.31894611223746433, -0.15900115193563077, 0.3329157926963747, 0.21438620754659388, -0.2054386285593068, -0.17086702795844805, 0.3628722923922322, 0.35064245316914155, 0.14633037605236787, 0.03804142300539573, 0.22921666378730132, -0.048879938072588204, 0.056289786221787715, 0.045048226167271464, 0.10872164286753863, 0.42491916405969216, -0.35092909889710294, 0.3701142739199811, -0.5382896687323424, -0.006582904950639311], [7.878787878787879, -0.22113591178007574, -0.016766432306394116, 0.2169864827401849, -0.17184188851113028, 0.05338023802874751, -0.5351685918988536, 0.6642071453023964, 0.13807798330737647, -0.2674691372797345, -0.19344918453115267, -0.17271078827618025, 0.09574256659509031, -0.2485210867572603, -0.366043051994214, -0.25514066164333316, -0.42137808941396104, -0.24080919204433737, -0.44567280748202154, -0.011869597239594791, -0.1458008936105506, -0.168543264850182, -0.14940068189395533, -0.1488202107638365, -0.2373360560045333, -0.17498836321662603, -0.11882207965376196, -0.18009438741950295, -0.017852877610038308, 0.1434493031857701, 0.306354577052664, 0.27363134169786907, -0.12185884767716612, 0.33730058234262517, 0.19592101342587603, -0.24786672767003012, -0.1535600794386878, 0.3874001704464011, 0.36528950053486126, 0.16976790799932184, 0.03625495422009157, 0.21961037408690076, -0.09608251202750276, 0.009046305464435585, 0.006975976880371222, 0.10937042423729847, 0.43884645477597634, -0.31645344705400436, 0.38574244398836555, -0.5660037551450238, -0.006519121871249188], [7.979797979797979, -0.22478610988636097, 0.03114060224199277, 0.23483055317733348, -0.21881147145168978, 0.07285450517810951, -0.555186586220565, 0.6859215036371189, 0.1584520483435017, -0.2626507812931464, -0.1500753489584878, -0.1417729845006265, 0.05097728412725092, -0.26070231136944966, -0.3565677789544724, -0.22387891214417843, -0.3827205284594137, -0.21810389172079925, -0.41765307409574765, -0.010408988552296109, -0.09660118049818056, -0.16419789112923733, -0.1879455232664991, -0.10779525235010694, -0.24477339692302252, -0.13550927345003613, -0.13908638642977147, -0.16337902007474114, -0.020103530059919425, 0.09924610168191908, 0.26583312761991346, 0.2654604874270064, -0.12054972145800513, 0.35980173504186136, 0.14870059530212812, -0.2712854735064967, -0.17160822827878797, 0.3580221617124241, 0.3475325797794228, 0.21121712339364088, 0.07429925001628623, 0.21093239454757684, -0.08079956707697053, 0.010710740541508175, 0.05192654795874195, 0.10429858465850181, 0.4023573304744617, -0.3590586005757868, 0.3436962648092367, -0.5735660727572863, -0.037742297260020555], [8.080808080808081, -0.22391622056254157, 0.051844951810907085, 0.2840496221288582, -0.17488591303647585, 0.11192091022376464, -0.5743479155410843, 0.6648925806088618, 0.13236391048869597, -0.25342289007764407, -0.13942080578781296, -0.10862508213531524, 0.08570132456462407, -0.24403245820388533, -0.3944591926552041, -0.2107033120289819, -0.35735042621587976, -0.22894507860562108, -0.39782735070523245, 0.009937268853652967, -0.07874868195446089, -0.13904674993887706, -0.19630894958700468, -0.07825546111539106, -0.2931913375731666, -0.10318657442961468, -0.17683649101387555, -0.16356532100368257, -0.048032380717346626, 0.08172003893861052, 0.21677640447306495, 0.22884933748874897, -0.11642576423579162, 0.32971773742064875, 0.15670286457508234, -0.2453662967987298, -0.16920591735974477, 0.3329298745635124, 0.2983601081227922, 0.21928419523128756, 0.07677457419359263, 0.2400448281185705, -0.031720772749252314, 0.05226647403755406, 0.03692363272738344, 0.105999221310802, 0.3613221675213528, -0.39616414337944633, 0.35189088909891414, -0.5997070661867672, -0.05807107290570669], [8.181818181818182, -0.2650702032622525, 0.0878425075054734, 0.26262482061041537, -0.19021050001885545, 0.11116854260142293, -0.6142474883704637, 0.6357769960818282, 0.1028800180686757, -0.2926294518543124, -0.14326765287092608, -0.06632784211176995, 0.05985354912012958, -0.2757086904752112, -0.36057760173859377, -0.20080967892819643, -0.3435506807463242, -0.22425685818058286, -0.44600597732284514, 0.0351732121140675, -0.05221379791560937, -0.16241515678410126, -0.15207069132180517, -0.06248073629164706, -0.318747305195024, -0.11394803122149937, -0.20132538157395774, -0.1862280313022088, -0.06118392637804483, 0.12146317560467793, 0.2553568183019599, 0.19834128751160712, -0.14604486325226934, 0.3244825811416081, 0.13259176188912092, -0.20689670971000024, -0.15045326353718413, 0.2861150537148089, 0.3459386450990858, 0.23126101669814886, 0.037724663303220336, 0.256225584214561, -0.0006194463995672569, 0.0042644127330459525, 0.05729420355578714, 0.07589980158118606, 0.38074961742623425, -0.39619162602789787, 0.37746126979553696, -0.6265050857877229, -0.06125755332793632], [8.282828282828282, -0.26226668093044775, 0.0765597702883373, 0.2887160965663004, -0.2292540395882945, 0.06819534164097242, -0.6347453185125702, 0.6174306879567721, 0.12127687815247103, -0.2704491494759596, -0.11311743577997123, -0.03491739478678656, 0.017394391071771098, -0.27324410330463067, -0.3593163591611214, -0.19088099147773419, -0.2950150823245169, -0.22746704608943863, -0.4154576493383063, 0.052501710512773206, -0.07589931494348476, -0.1457404988789243, -0.19956152090466078, -0.0808643432937859, -0.3216585202412714, -0.15731137811707366, -0.19988960346882653, -0.17310441350914685, -0.054658199843721104, 0.13843854934712316, 0.231650950858381, 0.18318255630992242, -0.13782506754617468, 0.3497662846926524, 0.17031764761332463, -0.17775612665259843, -0.13851210612383363, 0.3288097092108815, 0.3230772908515982, 0.20816465253384334, 0.027885388351047563, 0.2561261694758283, -0.024182001337900227, 0.018004541076178014, 0.06369184098355277, 0.05331387091382117, 0.34238309479289736, -0.4190007333300067, 0.3836051528048284, -0.6592438972380499, -0.04706822134727782], [8.383838383838384, -0.21305087727939492, 0.051643172271509774, 0.24336881333291424, -0.2414213400221475, 0.02703907807596031, -0.6118548393084077, 0.624754149641956, 0.11294640704912723, -0.291667656093364, -0.09324670457232595, -0.056411026270824303, 0.059051086008193414, -0.24962653689026543, -0.3334538454551723, -0.19259555756193197, -0.3259218042751811, -0.23944063696872406, -0.42123333643325167, 0.03359108062366428, -0.04785041611594975, -0.1746900255537291, -0.15598969178191463, -0.04876974921956342, -0.3345318185744325, -0.1786740661691629, -0.20015803751413744, -0.13099640773519988, -0.01056477075248885, 0.15040392374033354, 0.22367824324111904, 0.15218216937022888, -0.18699777919765062, 0.39140182954626074, 0.13419245335923177, -0.15475089702799175, -0.16677180399437636, 0.37822398945521674, 0.3094780289946566, 0.18088175749835392, 0.03326206233961279, 0.24076551547836839, -0.047056686184416274, 0.0496217481418443, 0.045599836019360296, 0.04681630246654929, 0.3267501189429494, -0.4071675687773048, 0.4319493650770804, -0.6740054381823605, -0.021544967109633117], [8.484848484848484, -0.22354728410357197, 0.03158697416598, 0.22662240398513492, -0.25301339411800605, -0.012340106070990758, -0.6276669500368832, 0.6210067723721455, 0.08246755179563678, -0.2706481070003797, -0.06879097028042647, -0.045824451945211064, 0.056389598938223824, -0.22270847145988726, -0.3450066666906751, -0.2338685768418067, -0.36318190192690347, -0.23901000162197142, -0.416574440924388, 0.0013656689621114118, -0.07829012723684534, -0.19644394938415555, -0.1246690511299792, -0.08104624017287226, -0.30732630790860377, -0.14948894287180017, -0.2413896675541, -0.1279583834313585, -0.021348027341014698, 0.17192465938805285, 0.23352864707182916, 0.10508437779152807, -0.20512642759045385, 0.4135772250429954, 0.08430947119116627, -0.19790473310553552, -0.1986804102181854, 0.32879186042474173, 0.27541893386144994, 0.16884790021641452, 0.07015889655724414, 0.2883458364520619, -0.040447261527679725, 0.03436629293205152, 0.06498402891408268, 0.056953848282879964, 0.3197193188538704, -0.39593653256785166, 0.48083106160066635, -0.6819634662956767, -0.03149780668526557], [8.585858585858587, -0.23998763993171515, 0.06727652700648157, 0.27107768308784064, -0.23647102532605993, -0.04221421824631233, -0.6490601344850435, 0.621268628788417, 0.07150050932346079, -0.29415637300154224, -0.08627459242226045, -0.0697247284735131, 0.014808206157921923, -0.2602784064001306, -0.3893795259411791, -0.19725025190236767, -0.345333303935027, -0.2321292161033467, -0.4020716309070712, 0.012745823227034905, -0.055685985761563445, -0.21178973577632615, -0.16120947623536686, -0.06207846300456865, -0.3513885181663078, -0.17405823812159923, -0.22526614765389366, -0.14835240124352198, -0.003078213400715745, 0.20867202285841113, 0.2278167027684981, 0.11034564846490019, -0.160483056752237, 0.4204863720187441, 0.1157616308923677, -0.15791500257887395, -0.1505574673706082, 0.29636491708769136, 0.24014547751533907, 0.1863176212146087, 0.1040300020654413, 0.3366225068272833, -0.03389417387933884, 0.025471679915703666, 0.07795816209006286, 0.07917499124773873, 0.3693584752270092, -0.363907855383201, 0.43219675325668017, -0.6464183065331132, -0.08050371505571888], [8.686868686868687, -0.20944258619878717, 0.06457492606330367, 0.2847293872133185, -0.26202193239544397, -0.004477817713248254, -0.6034253738743239, 0.6199927831626361, 0.03135285163917106, -0.3112271952810167, -0.11842951370633398, -0.03826012903644112, 0.0011733727998849645, -0.3052749618428011, -0.4296284761373161, -0.17958846934057096, -0.3322886015153816, -0.21400728835138422, -0.3947797768122063, -0.015208274555299762, -0.04795851830488972, -0.17841709250160395, -0.170298565175639, -0.06985654303280153, -0.31719657060553397, -0.16861469564788314, -0.24391212714315938, -0.11797324687084845, 0.0080892636162193, 0.18417326482020496, 0.1966283138606106, 0.15379003509964184, -0.12444108543129831, 0.38487627155354903, 0.16333635770257096, -0.11568026869555366, -0.12892593571013106, 0.2991376152361943, 0.2629967486163432, 0.22700891804458903, 0.11973918293501844, 0.3575865828770683, -0.01983410071862217, -0.01609517537894452, 0.08354313794172354, 0.06930849955771184, 0.4188216381002193, -0.3595681919642873, 0.44223106585159483, -0.6222862583112448, -0.1109625335919365], [8.787878787878787, -0.1840076867405518, 0.0809026307649165, 0.2949142478265077, -0.24587383501807547, 0.03984443250694461, -0.5534774587610946, 0.6479155101274003, 0.013607289627829904, -0.34583326696273076, -0.16699436344377785, -0.04181338465061538, 0.009228655123810194, -0.2664473078808817, -0.43644970537105005, -0.17394526609609984, -0.32633369318764366, -0.22016747520439517, -0.4323793778484645, -0.040769781962236164, 0.001236989910320542, -0.1920316788857372, -0.14971022384790333, -0.06822480319479657, -0.3356883183526016, -0.17543735678893665, -0.20286038896065658, -0.07861912005692057, -0.03364472017111712, 0.14843127117853097, 0.1873632223073978, 0.19391951068847968, -0.16010093194946573, 0.34041930754079586, 0.1873875677351136, -0.1289443268672996, -0.15356411830290398, 0.2508240839872388, 0.2963158196948197, 0.19930486930107388, 0.08174407734054351, 0.3310301427446353, -0.04984091800019852, -0.010898745283904006, 0.10090477519295091, 0.028672346637224018, 0.4173126759817511, -0.3854285912391035, 0.42969612062016216, -0.5948776834847582, -0.06558866561039886], [8.88888888888889, -0.20270104258170082, 0.11147549150859501, 0.33773271597287235, -0.28602454663888927, 0.003408046304976549, -0.569742266621766, 0.6369290991643698, 0.05255510319542715, -0.3652596392108437, -0.20628939071570185, -0.06448510106951438, -0.023342273402007577, -0.2949769054831552, -0.4070611790932388, -0.20640099406281393, -0.3029123908202307, -0.24992758498765155, -0.45920309811421206, -0.016239871040141685, 0.030375150411636055, -0.2341617226488746, -0.14262984887495045, -0.025268371973925403, -0.29656337266550326, -0.1470366933072848, -0.15938624648883207, -0.12216263012900669, -0.02280514818602178, 0.17669026924622622, 0.14461446872078507, 0.19279963156104624, -0.15556528720525373, 0.3238659504675963, 0.2359261109485546, -0.08087197746520433, -0.1391856895203182, 0.27694974576526, 0.26342111834851484, 0.1896598758429713, 0.12572340126081552, 0.3402497858011465, -0.057330363809801846, -0.031135280850457102, 0.06008083078073633, -0.003260558415073986, 0.44217026977784757, -0.3919697718395208, 0.42799676717480445, -0.5730368574533953, -0.0501543706684961], [8.98989898989899, -0.1892973742854733, 0.08677354197356742, 0.3059006570525337, -0.2779382718722041, 0.039280743573361296, -0.5722301109417723, 0.6637826169517874, 0.09678229469171815, -0.3385002823672228, -0.22898422062259796, -0.10103578777804503, -0.055675488565734225, -0.2686131094886128, -0.4476477733306997, -0.24025777029311135, -0.29418955488250914, -0.2465749674716353, -0.4555594211786605, -0.04953655165021751, 0.03730546384880591, -0.1985577645630469, -0.10513865292860262, -0.06959789527548586, -0.2869351333145114, -0.19271453827843335, -0.16409410197253987, -0.08115855597481807, 0.004494548912273973, 0.1629161844356501, 0.10466427224312064, 0.18859111945663687, -0.18878929967956773, 0.29618543278414744, 0.21071385138945034, -0.09814684584967455, -0.12658329540789645, 0.25337993698162237, 0.2943867546947167, 0.20508871824335229, 0.16012797974389692, 0.31621231590393384, -0.05857130248394482, -0.007502285584204356, 0.023851286397323007, -0.043368235945161815, 0.4232590523665034, -0.40467575599098954, 0.38653697424755307, -0.6164774208339491, -0.08574078655301362], [9.09090909090909, -0.18525691675540165, 0.0447308858705999, 0.2576829754551858, -0.317251721405349, 0.06499657181691688, -0.539265144942711, 0.6999294432279323, 0.1125293704361287, -0.3311154779672154, -0.21733204307863363, -0.13656440326151179, -0.07126271938626341, -0.2537290956985587, -0.4815547651698178, -0.2623516029312572, -0.30868022718055077, -0.2660681588346937, -0.4424369156957944, -0.0851560351908833, 0.050394565256342144, -0.1966356876783448, -0.12807574413389905, -0.11645312654201778, -0.25792347124879156, -0.19130896782350637, -0.17619283699642208, -0.09734335160706062, -0.03689156577594918, 0.2010194233705946, 0.07900210742397903, 0.1679338223853658, -0.1908078488129534, 0.3199311779774714, 0.1668776761255799, -0.05972945579277285, -0.15993386544379593, 0.22857309051215416, 0.2618891108608109, 0.19685558923376806, 0.11693884845276853, 0.29149290084836654, -0.043541359382088474, -0.05499478150894078, 0.0032140066081118336, -0.03690822419349908, 0.45654395212782434, -0.3561635069356081, 0.33909923432783856, -0.5853102554200194, -0.07123261812886496], [9.191919191919192, -0.2055775416674002, 0.06800694637217142, 0.22669019306860305, -0.3124262706589503, 0.08361373326248221, -0.5793246303145301, 0.6652744874050194, 0.08209224531631644, -0.28394445445777017, -0.17257412070222472, -0.16689402768990527, -0.08912276581094093, -0.23243323825811443, -0.4358349919107377, -0.24706329965579, -0.26090350813720836, -0.2698676117734273, -0.4747922300739987, -0.11144003732255117, 0.04829004930087883, -0.21180669692170367, -0.16837368535614788, -0.06974352509481212, -0.24646304671052002, -0.14859046186396507, -0.1662710923311241, -0.06509371978559164, -0.035196199617573115, 0.24284117331240235, 0.12250905222177086, 0.19283723124165333, -0.18621457884872833, 0.34260224037308734, 0.18409338992401142, -0.03473057606857275, -0.16789598769596076, 0.23977738236214474, 0.23006157744476866, 0.15589629390157808, 0.11637277909094194, 0.3384981975152857, -0.0798930443642355, -0.024873470661572455, -0.002180600071028979, -0.01815929281310093, 0.46421603008945667, -0.33136810871354627, 0.3631264154086274, -0.6324662989111081, -0.09917415578205542], [9.292929292929292, -0.24449875154915562, 0.11414669412253198, 0.22887737285106202, -0.31045109988782954, 0.11925307227850496, -0.578513166144587, 0.6768099373193371, 0.08466012139042013, -0.2647595176510816, -0.13192688381793224, -0.16711377622596635, -0.09602325985846043, -0.20103194445496717, -0.4019460934203169, -0.25876345878135526, -0.2743277850093867, -0.25180551739772006, -0.4708238202412613, -0.13597232218207086, 0.012369598138786672, -0.17554924224829055, -0.15314958617562127, -0.07958634538418999, -0.19927961632894015, -0.10273554260621517, -0.1410736585478768, -0.0156323840355668, -0.036299707626684156, 0.2836462654718852, 0.11836299839134296, 0.19123875271604876, -0.14933958663488078, 0.3403232231129655, 0.22401649780804103, -0.06428432143687007, -0.12266187302398979, 0.21267528296057442, 0.2146475925132582, 0.1233444157046164, 0.0793933964234422, 0.3032880550718518, -0.05124728041856241, -0.010711307524033946, -0.03852365601447039, -0.006718576845349539, 0.4190363504671138, -0.340119957612008, 0.37201077429535223, -0.5857042649554638, -0.1474192726435244], [9.393939393939394, -0.2632347217615813, 0.15952716753929824, 0.22845957144142906, -0.3308276881012538, 0.09234084756986113, -0.5451295095090382, 0.6781330925610084, 0.06574103179967611, -0.265623291854832, -0.08541748099657304, -0.19649476948306985, -0.11477385650748635, -0.1959945239961324, -0.36796499836327196, -0.2627717345616116, -0.23250784421625292, -0.2441514191717042, -0.465477453831802, -0.18576698187540458, -0.004719384827785136, -0.1682066217665603, -0.202629278778114, -0.0805547626592027, -0.17300067998826654, -0.0890130220055365, -0.10013524857229472, 0.033708026871468066, -0.021164107925932353, 0.3253417602511104, 0.16271146255380523, 0.23686121171210858, -0.17703286438455035, 0.38296829489099876, 0.24570585742456014, -0.07999689293321395, -0.07672601648611932, 0.2250544666343242, 0.25220375119504046, 0.1175569031541869, 0.08319640472387801, 0.32938570365928815, -0.09056428276583806, -0.02517683481291312, -0.07623574619161991, 0.03250098831664836, 0.4153463877223243, -0.3428620832794926, 0.3553073105686263, -0.598319722641292, -0.18189265849452035], [9.494949494949495, -0.2675368087566547, 0.1585770727276882, 0.2585086919983443, -0.33525478300144396, 0.09427464549100834, -0.5181172101676889, 0.7270596564531853, 0.07127587123281397, -0.2737279105450619, -0.10165537363245317, -0.16975782218901975, -0.117496305621984, -0.23809442742876172, -0.407669122336044, -0.3010640982281844, -0.22796558548330448, -0.22899494163440623, -0.48537219106604823, -0.13920295782525954, 0.022842241325394242, -0.12142688597441234, -0.23754273966128125, -0.03758516146409201, -0.16563897972543107, -0.05797049399387068, -0.08804779876566204, 0.08262926651533947, -0.013831191168528857, 0.2820630711648402, 0.1379919155049965, 0.27746207218557406, -0.19861656017768514, 0.40694069585051895, 0.21679536177723888, -0.05844505467628992, -0.10497504466606641, 0.18679858484512177, 0.260113010420199, 0.16131169014312313, 0.09065317247123418, 0.35022826056056416, -0.1131902604818374, 0.01405294454324809, -0.06311444197383427, 0.040493918340294636, 0.381455516811743, -0.3608579971462246, 0.3629390122957747, -0.5656118139458206, -0.13414609737484456], [9.595959595959595, -0.251642801734035, 0.1717962791709637, 0.2944523231428354, -0.3813881309884873, 0.07860799000865287, -0.48651717519219134, 0.6853421852515356, 0.07482885196958013, -0.22844006833935673, -0.08601506486553469, -0.19409466705533368, -0.11325840863497558, -0.25120906230103, -0.3891050257461818, -0.2690142794934904, -0.24279709027898896, -0.18734691748221685, -0.4527054851513038, -0.09028352983277882, 0.036145341599936, -0.11447285122362286, -0.2451751493704397, -0.021238661542295954, -0.17703412444250177, -0.08796152764687895, -0.10765334035345656, 0.13014404261835708, -0.04661188506670976, 0.26345558338904357, 0.10855907826385866, 0.23697392666478728, -0.15448469414293142, 0.36312241302427684, 0.2216303303382828, -0.008722112518008654, -0.15425484893308647, 0.2041399670588077, 0.24914452257746286, 0.17808212458932166, 0.04848524920869128, 0.3099073926303532, -0.1339141464407951, -0.018025543987481865, -0.07360058199561638, 0.043586051271608445, 0.40558719347727573, -0.37451497731863137, 0.3251002859262431, -0.5312590569395645, -0.16043685817451894], [9.696969696969697, -0.2762170499522632, 0.19509578115476295, 0.26574792636686995, -0.3714878284996372, 0.0944852829445211, -0.5313621775506463, 0.7064891778731515, 0.07134014485941928, -0.2640178161690206, -0.10686948676624208, -0.2178317968483108, -0.06679886627575096, -0.29463932408546256, -0.4293197231657592, -0.31635885600893643, -0.20572410841046296, -0.21675780521183957, -0.4070637292533401, -0.0680844476916567, -0.003329911164445934, -0.1261264604493927, -0.250593109134638, -0.05344939492321002, -0.14009783084384123, -0.046053263564980296, -0.07510466892071396, 0.08193799741579888, -0.07330379728948305, 0.22821678376891572, 0.08856788941740447, 0.25387352503748467, -0.167745123383862, 0.3578977416420829, 0.2630959337503712, -0.01752902972134918, -0.14758836074796874, 0.15987378630077156, 0.20786382416710747, 0.22694114274771282, 0.0832153736102498, 0.3152806941518707, -0.08787785616102818, 0.010819967516995141, -0.11524443226605052, 0.04063741378906506, 0.36192522734173904, -0.33225482764420067, 0.305875914040934, -0.5167173844009171, -0.13356945954758992], [9.797979797979798, -0.26210692408219305, 0.23533673147955958, 0.2594748105116363, -0.4214391525521112, 0.07276430833118352, -0.5132297987633969, 0.6838046195791683, 0.09812660429275077, -0.2618967855835865, -0.14178256441314432, -0.203566053176605, -0.0662570371784948, -0.322279549491652, -0.4348875887431274, -0.29258821960926223, -0.24274106196786174, -0.20133238207694845, -0.4306772158432322, -0.0637181494342958, 0.04475987066961164, -0.14537359451190401, -0.2925470094662981, -0.00865406353796088, -0.1861961970208929, -0.048223062142776794, -0.11673550322259868, 0.07612347831219764, -0.09426063377448449, 0.2688670622046793, 0.07385659470318488, 0.2840412426907027, -0.21279381178367335, 0.3263868532342302, 0.2829609909215692, -0.052751499664191154, -0.1551905998654157, 0.14950291530458282, 0.1767229852943466, 0.18647633762563276, 0.11254425637553964, 0.3622418323776341, -0.054237333113540946, -0.03136065028725159, -0.10019690510192832, 0.03339880079685174, 0.3518346147781527, -0.2888351393603103, 0.3127163518097775, -0.5181735623959396, -0.11848915963389368], [9.8989898989899, -0.2920945633603527, 0.2015614233543796, 0.25163656141789525, -0.42125779318355805, 0.07301095170685622, -0.4669004354826172, 0.7332987622186244, 0.1368213014614056, -0.2229818401641588, -0.18808935806674307, -0.1540429507466985, -0.11160644915479347, -0.3471782603537462, -0.3884784003415803, -0.25675671187891586, -0.24488732613150857, -0.16917846838894238, -0.4654024474062475, -0.09327136607039382, 0.031239679831067804, -0.15717752143821168, -0.33740198932685767, 0.023003504204131525, -0.22582086930827774, -0.034631869005506064, -0.13525790168758922, 0.08377005408570706, -0.07747127058274075, 0.2765873506985946, 0.08407644966703226, 0.29743932975093984, -0.2255602354973098, 0.3541053343968374, 0.26028426212245587, -0.004536625685332613, -0.19896479560955516, 0.17809539277912845, 0.19305239664765944, 0.1387261792386659, 0.0973761619464177, 0.32381704767077524, -0.07643283456657071, -0.07947817525595494, -0.13921338798733773, 0.05507413248637243, 0.3408955052873333, -0.281345363878944, 0.32148632268155947, -0.5261872628200067, -0.0823311865923424], [10.0, -0.27633208280745436, 0.19214955559113572, 0.20710829912608944, -0.4210851810143966, 0.053338703662131726, -0.4468056898253924, 0.7187715536130703, 0.16980223830322005, -0.2005502248728878, -0.17829298381561662, -0.1497919616524569, -0.12742394298218304, -0.3030034235386833, -0.3809170317379089, -0.23231107520566516, -0.25685419873169396, -0.21673327427471378, -0.4956534099252743, -0.06105031876190226, 0.059096149508489265, -0.16061961999642946, -0.33986814732814197, 0.05230611165387963, -0.22018928632721152, -0.042774496991128515, -0.11042623546429023, 0.08541854495819717, -0.05022611374684295, 0.23894468649730582, 0.08189725322594626, 0.33575195764452026, -0.18458262886232477, 0.31651704509162515, 0.2516797837734582, 0.011094703152224324, -0.16858516024009856, 0.20904477284842427, 0.15323727222923111, 0.13803014892731522, 0.14399285914480997, 0.3643967255185231, -0.06615739558683276, -0.10198229837097632, -0.14987484958917435, 0.031080530158347268, 0.3156268320225146, -0.2758417494182701, 0.34398189229017057, -0.5107667888820514, -0.12144728396834698]]}, \"id\": \"el913299767760\"});\n",
" });\n",
" });\n",
"}else{\n",
" // require.js not available: dynamically load d3 & mpld3\n",
" mpld3_load_lib(\"https://mpld3.github.io/js/d3.v3.min.js\", function(){\n",
" mpld3_load_lib(\"https://mpld3.github.io/js/mpld3.v0.2.js\", function(){\n",
" \n",
" mpld3.register_plugin(\"voronoi_highlightlines\", VoronoiHighlightLines);\n",
" VoronoiHighlightLines.prototype = Object.create(mpld3.Plugin.prototype);\n",
" VoronoiHighlightLines.prototype.constructor = VoronoiHighlightLines;\n",
" VoronoiHighlightLines.prototype.requiredProps = [\"line_ids\"];\n",
" VoronoiHighlightLines.prototype.defaultProps = {alpha_bg:0.3, alpha_fg:1.0}\n",
" function VoronoiHighlightLines(fig, props){\n",
" mpld3.Plugin.call(this, fig, props);\n",
" };\n",
"\n",
" VoronoiHighlightLines.prototype.draw = function(){\n",
" var alpha_fg = this.props.alpha_fg;\n",
" var alpha_bg = this.props.alpha_bg; \n",
" \n",
" // get the data for the voronoi mesh\n",
" data = new Array();\n",
" for(var i=0; i<this.props.line_ids.length; i++){\n",
" var line_instance = mpld3.get_element(this.props.line_ids[i], this.fig);\n",
" \n",
" for (j=1; j<line_instance.data.length; j++){\n",
" var obj = {}\n",
" obj.x = line_instance.data[j][line_instance.props.xindex]\n",
" obj.y = line_instance.data[j][line_instance.props.yindex]\n",
" obj.line_instance = line_instance\n",
" obj.line_id = this.props.line_ids[i]\n",
" obj.label_id = i\n",
" obj.fig = this.fig\n",
" data.push(obj)\n",
" }\n",
" }\n",
"\n",
" var ax = mpld3.get_element(this.props.line_ids[0], this.fig).ax\n",
"\n",
" // we hide the transform from data coordinates to svg\n",
" // coordinates in the voronoi\n",
" var transform_x = function(d){return ax.x(d)+ax.position[0]};\n",
" var transform_y = function(d){return ax.y(d)+ax.position[1]};\n",
" \n",
" var voronoi = d3.geom.voronoi()\n",
" .x(function(d) { return transform_x(d.x); })\n",
" .y(function(d) { return transform_y(d.y); }) \n",
" .clipExtent([ax.position, [ax.position[0]+ax.width, ax.position[1]+ax.height]]);\n",
"\n",
" \n",
"\n",
" var voronoiGroup = this.fig.canvas.append(\"svg:g\")\n",
" .attr(\"class\", \"voronoi\");\n",
" \n",
" voronoiGroup.selectAll(\"path\")\n",
" .data(voronoi(d3.nest()\n",
" .key(function(d) { return d.x + \",\" + d.y; })\n",
" .rollup(function(v) { return v[0]; })\n",
" .entries(data)\n",
" .map(function(d) { return d.values; })))\n",
" .enter().append(\"path\")\n",
" .attr(\"d\", function(d) { \n",
" var ret = \"M\" + d.join(\" L\") + \"Z\";\n",
" return ret; })\n",
" .datum(function(d) {return d.point; })\n",
" .on(\"mouseover\", mouseover)\n",
" .on(\"mouseout\", mouseout);\n",
" \n",
" \n",
" function mouseover(d) {\n",
" d3.select(d.line_instance.path[0][0])\n",
" .style(\"stroke-opacity\", alpha_fg); \n",
" }\n",
"\n",
" function mouseout(d) {\n",
" d3.select(d.line_instance.path[0][0])\n",
" .style(\"stroke-opacity\", alpha_bg); \n",
" } \n",
" };\n",
" \n",
" mpld3.draw_figure(\"fig_el913299767760296751749\", {\"axes\": [{\"xlim\": [0.0, 10.0], \"yscale\": \"linear\", \"axesbg\": \"#FFFFFF\", \"texts\": [], \"zoomable\": true, \"images\": [], \"xdomain\": [0.0, 10.0], \"ylim\": [-0.80000000000000004, 0.80000000000000004], \"paths\": [], \"sharey\": [], \"sharex\": [], \"axesbgalpha\": null, \"axes\": [{\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"bottom\", \"nticks\": 6, \"tickvalues\": null}, {\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"left\", \"nticks\": 10, \"tickvalues\": null}], \"lines\": [{\"color\": \"#0000FF\", \"yindex\": 1, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132136114032\"}, {\"color\": \"#0000FF\", \"yindex\": 2, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138851280\"}, {\"color\": \"#0000FF\", \"yindex\": 3, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100224624\"}, {\"color\": \"#0000FF\", \"yindex\": 4, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100222256\"}, {\"color\": \"#0000FF\", \"yindex\": 5, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100222192\"}, {\"color\": \"#0000FF\", \"yindex\": 6, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132100221680\"}, {\"color\": \"#0000FF\", \"yindex\": 7, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135813136\"}, {\"color\": \"#0000FF\", \"yindex\": 8, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812688\"}, {\"color\": \"#0000FF\", \"yindex\": 9, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135811600\"}, {\"color\": \"#0000FF\", \"yindex\": 10, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135811760\"}, {\"color\": \"#0000FF\", \"yindex\": 11, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135811184\"}, {\"color\": \"#0000FF\", \"yindex\": 12, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135814416\"}, {\"color\": \"#0000FF\", \"yindex\": 13, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135813744\"}, {\"color\": \"#0000FF\", \"yindex\": 14, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135813392\"}, {\"color\": \"#0000FF\", \"yindex\": 15, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812848\"}, {\"color\": \"#0000FF\", \"yindex\": 16, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812912\"}, {\"color\": \"#0000FF\", \"yindex\": 17, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135812144\"}, {\"color\": \"#0000FF\", \"yindex\": 18, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132136089456\"}, {\"color\": \"#0000FF\", \"yindex\": 19, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138733232\"}, {\"color\": \"#0000FF\", \"yindex\": 20, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138731856\"}, {\"color\": \"#0000FF\", \"yindex\": 21, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138733392\"}, {\"color\": \"#0000FF\", \"yindex\": 22, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138733712\"}, {\"color\": \"#0000FF\", \"yindex\": 23, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138732976\"}, {\"color\": \"#0000FF\", \"yindex\": 24, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138766032\"}, {\"color\": \"#0000FF\", \"yindex\": 25, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138764496\"}, {\"color\": \"#0000FF\", \"yindex\": 26, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138764848\"}, {\"color\": \"#0000FF\", \"yindex\": 27, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138764912\"}, {\"color\": \"#0000FF\", \"yindex\": 28, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138767824\"}, {\"color\": \"#0000FF\", \"yindex\": 29, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135913392\"}, {\"color\": \"#0000FF\", \"yindex\": 30, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135910352\"}, {\"color\": \"#0000FF\", \"yindex\": 31, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135910448\"}, {\"color\": \"#0000FF\", \"yindex\": 32, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135767792\"}, {\"color\": \"#0000FF\", \"yindex\": 33, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135769200\"}, {\"color\": \"#0000FF\", \"yindex\": 34, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135767856\"}, {\"color\": \"#0000FF\", \"yindex\": 35, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135768624\"}, {\"color\": \"#0000FF\", \"yindex\": 36, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135769296\"}, {\"color\": \"#0000FF\", \"yindex\": 37, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138926224\"}, {\"color\": \"#0000FF\", \"yindex\": 38, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132138925520\"}, {\"color\": \"#0000FF\", \"yindex\": 39, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137464400\"}, {\"color\": \"#0000FF\", \"yindex\": 40, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137464752\"}, {\"color\": \"#0000FF\", \"yindex\": 41, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465104\"}, {\"color\": \"#0000FF\", \"yindex\": 42, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465456\"}, {\"color\": \"#0000FF\", \"yindex\": 43, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465808\"}, {\"color\": \"#0000FF\", \"yindex\": 44, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132137465520\"}, {\"color\": \"#0000FF\", \"yindex\": 45, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135778992\"}, {\"color\": \"#0000FF\", \"yindex\": 46, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135779344\"}, {\"color\": \"#0000FF\", \"yindex\": 47, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135779696\"}, {\"color\": \"#0000FF\", \"yindex\": 48, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135780048\"}, {\"color\": \"#0000FF\", \"yindex\": 49, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135780400\"}, {\"color\": \"#0000FF\", \"yindex\": 50, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el9132135780752\"}], \"markers\": [], \"id\": \"el913299769072\", \"ydomain\": [-0.80000000000000004, 0.80000000000000004], \"collections\": [], \"xscale\": \"linear\", \"bbox\": [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], \"height\": 640.0, \"width\": 960.0, \"plugins\": [{\"line_ids\": [\"el9132136114032\", \"el9132138851280\", \"el9132100224624\", \"el9132100222256\", \"el9132100222192\", \"el9132100221680\", \"el9132135813136\", \"el9132135812688\", \"el9132135811600\", \"el9132135811760\", \"el9132135811184\", \"el9132135814416\", \"el9132135813744\", \"el9132135813392\", \"el9132135812848\", \"el9132135812912\", \"el9132135812144\", \"el9132136089456\", \"el9132138733232\", \"el9132138731856\", \"el9132138733392\", \"el9132138733712\", \"el9132138732976\", \"el9132138766032\", \"el9132138764496\", \"el9132138764848\", \"el9132138764912\", \"el9132138767824\", \"el9132135913392\", \"el9132135910352\", \"el9132135910448\", \"el9132135767792\", \"el9132135769200\", \"el9132135767856\", \"el9132135768624\", \"el9132135769296\", \"el9132138926224\", \"el9132138925520\", \"el9132137464400\", \"el9132137464752\", \"el9132137465104\", \"el9132137465456\", \"el9132137465808\", \"el9132137465520\", \"el9132135778992\", \"el9132135779344\", \"el9132135779696\", \"el9132135780048\", \"el9132135780400\", \"el9132135780752\"], \"alpha_fg\": 1.0, \"type\": \"voronoi_highlightlines\", \"alpha_bg\": 0.2}], \"data\": {\"data01\": [[0.0, 0.0043404941790965434, 0.027828921544984855, -0.008290926441633917, -0.049006630632901706, -0.043933030408504284, 0.005252942343432332, -0.009015352818560463, -0.04113745858660054, 0.04588430789564042, 0.015242730280798778, -0.04722677224742309, 0.023260350424478684, -0.04568725387245053, -0.038179522814420046, -0.004415162505038883, -0.03934898842933078, 0.03869058758476131, -0.020408281049644962, -0.009603506485856306, 0.02131783359024162, -0.02405564673706423, -0.01646325534015226, 0.002915278076949557, -0.047814695632708404, -0.02794329431857495, -0.025047356113455977, 0.04837943923230349, -0.011399490851676887, 0.027876990046763018, -0.04678712242548856, -0.04232645449456236, 0.011557326533200518, -0.003977830471167754, 0.003997563054866949, -0.01664553087254268, -0.04625394826240962, -0.00879922313197754, 0.011847475589182822, 0.011168022886700268, -0.04241505712537178, 0.026961995556273256, -0.0023014123728484215, -0.014994927064900044, 0.049442558935641784, 0.0010477293137965194, -0.0034864358970876697, -0.04534062478247452, 0.014341034162007339, -0.029696680148066514, 0.04303633899561088], [0.10101010101010101, -0.017822567311523842, 0.05578876140605982, 0.011268176387573471, -0.020030062699301042, 0.0010506635064802122, -0.028634347951139585, -0.03831129393505137, 0.007187579105054846, 0.08699070750532596, 0.022563818000236116, -0.05900304583637581, 0.009890162427520645, -0.0030023651360576373, -0.0067722964701888225, -0.011386132092330793, -0.048259022915289565, -0.005176264132948291, 0.02115688294994126, -0.0005931075302266671, 0.06289956366227234, -0.0717553287161456, 0.01003476836185484, 0.002184457620597713, -0.06562911123033698, -0.04483314550140742, -0.0483204814501381, 0.024777877797942195, -0.037714297900952265, 0.040977145294841345, -0.08839190662921739, -0.035435205457780644, -0.034008312054043116, 0.0374091996794847, 0.01701379000154457, -0.062141139312062985, -0.022358121911026742, 0.03985078011190124, 0.014809102461281433, 0.024998234382152207, -0.016700966756150216, -0.018678319253858367, 0.008090692657797095, -0.011602962488267799, 0.03461048046330931, -0.04498449956262971, 0.02796182708063677, -0.07109856449126867, -0.004062951429550753, -0.05684867298761536, 0.03115915909591056], [0.20202020202020202, -0.025370808236610535, 0.0668215767269992, 0.0037529001800566293, -0.04249874081981121, 0.011916568020462296, -0.021779451489311288, 0.007290972757195549, 0.005111877292238547, 0.04895818588974209, -0.00892790633954419, -0.01367795463263461, -0.032662963087867584, -0.010034699259029289, -0.022716500657321396, -0.02081932054650251, -0.06455543409255626, -0.018454151179551702, 0.011843712002423436, -0.0006832442511129362, 0.09343215112558531, -0.056314586689947675, -0.02389685711173448, -0.02307885882405766, -0.1152591295669996, -0.06279547455252442, -0.036215538063392685, 0.04854456879684008, -0.06399878694479766, 0.007818299158128462, -0.07517733439045704, -0.04542339019290293, -0.009421622600588736, -0.006336773219680819, 0.031495493417033615, -0.04837456400228411, -0.023895541463635206, 0.046884938610794236, 0.023474782539263318, -0.0019078058730204982, -0.03370448383489309, -0.04952692766925984, -0.027191175248125286, -0.02772310104591823, 0.032679830960215414, -0.06747163961739452, 0.001030548788459016, -0.09492129929490976, -0.028469190655946643, -0.04866796820620435, 0.033603238655798916], [0.30303030303030304, 0.009106804995379834, 0.047721611579439424, 0.0395643227851996, -0.02072474036547757, 0.029116836399676653, -0.023208464678633557, -0.0021079095261689468, 0.0033285793409595964, 0.010405045385693083, 0.0024601805470800472, -0.041458101909862294, -0.06314286920449805, 0.003063912577242301, 0.007218741539066851, 0.023816727736642476, -0.10457172805524678, 0.016260799325888288, 0.048133850806228666, 0.015299635819650971, 0.06584984244241275, -0.009392953194577051, 0.01910866903321416, -0.028181110216343865, -0.15078398657833178, -0.07283368984475394, -0.07120511679425376, 0.019681396991548982, -0.07304067460650318, 0.011282111997874513, -0.055670348613366304, -0.06453360295585167, 0.029870257480342083, 0.0434016239848998, 0.05567685613644189, -0.07803803407688366, -0.05315769374987165, 0.017801744683282227, -0.0056657572024316205, -0.041881352673658265, -0.004495016257906589, -0.08740829976532263, -0.00859112294857984, -0.04098453120471303, 0.0729040534246214, -0.06254042149646075, -0.02445980360806457, -0.0528161026716152, 0.014824709334231946, -0.03324754894172366, 0.02314496390485957], [0.40404040404040403, -0.04042130938552291, 0.06749510233073502, 0.0742575707461415, -0.028589148189821993, 0.025394188769133214, -0.06045651032726669, 0.019580103564292156, 0.005983120945320612, 0.060101546018520045, -0.03984479816060405, -0.06094548989245717, -0.015647433314165973, -0.03736370926749183, 0.05209152383705187, -0.008941042827291825, -0.062262570328595696, 0.015870196071478007, 0.0022198187609531114, 0.05546863926364744, 0.10088999250906086, 0.010502201026385969, -0.008153691667858527, -0.044891782491375876, -0.11347232034357815, -0.0860973638353595, -0.08210372122806389, 0.025696777295989136, -0.0918262731377514, 0.008625151516392706, -0.06984721027313341, -0.021693101362038572, 0.012392198340798858, 0.026511753472067804, 0.009704073236796916, -0.12033812071077318, -0.026912464409203717, -0.026409050982054042, -0.021935858100778072, -0.03611504484861838, 0.021161738295667757, -0.061323994638567074, 0.04068997785521578, 0.007758337089384303, 0.028765169000617, -0.03630041033032473, -0.06274763541384067, -0.07247685012708076, -0.01938763772069048, 0.009996747783549212, 0.03773441357982164], [0.5050505050505051, -0.07826439730721149, 0.10345693190364154, 0.031277482137010384, -0.06425556097292204, 0.04582149829262994, -0.05608729340426295, 0.036813244408289605, 0.0502905536277322, 0.0141023786143308, -0.023035346459540012, -0.029013509700661008, -0.015227305498253421, -0.056641453695038625, 0.09153019023272191, -0.0291697537570394, -0.029244375755145595, -0.0277745627187199, -0.03965449962031607, 0.034680074557436026, 0.10368843720033157, -0.03629236344797042, 0.012010948689167206, -0.07884467376908957, -0.11548675086753221, -0.04130123762047884, -0.06646415258858479, 0.03458105271186505, -0.06408835908586294, 0.05795552741783975, -0.05435739033289221, -0.048195332843006644, 0.030260603687302583, 0.046946393619688304, 0.03159864305642287, -0.09884116271212769, 0.009327793702041343, -0.006790415759019865, 0.013690892966892878, 0.013708919598213909, 0.01473718999082976, -0.04894021669517754, 0.0608939566603905, 0.043415761371319285, 0.07372293884197244, -0.06618297561262701, -0.07795498212663071, -0.09107151986482478, -0.027146888144698258, -0.001865049683945328, 0.010339081321902872], [0.6060606060606061, -0.06118948883453362, 0.1159893076793223, 0.011452723485425233, -0.0950033929477241, 0.013928212409240665, -0.08603823253099718, 0.07102695466366207, 0.04936093879943197, 0.050058753066198745, -0.04988736998779732, -0.021166528109877954, 0.033336385735775666, -0.09188897740463955, 0.07164679234244527, -0.0715019879756858, -0.023865942488742825, -0.06848728242916183, -0.06769868517117957, 0.049637149758739896, 0.06032992387457695, -0.08596284239909682, 0.06185939105601697, -0.0942208987746679, -0.16378415417702102, -0.0655361398675467, -0.021903314289291605, -0.0053671901833961325, -0.04936683819933477, 0.036021921188022756, -0.08692295076805068, -0.008008443815443286, 0.06884851628127392, 0.017506986706504038, 0.016870214299523498, -0.1381132820281501, -0.010077004449924456, -0.00487839306918856, 0.033604172861691095, 0.023659340255764306, 0.0004851442374971711, -0.05265473245961266, 0.031580111202357715, 0.041318309929342316, 0.053737491459313, -0.03521645116405185, -0.059864557257958834, -0.1362683705589297, -0.00934372540799551, 0.01650978322852377, 0.034297457685782906], [0.7070707070707071, -0.028604213324028856, 0.16423009064027727, 0.05941509158844225, -0.11362186961596057, 0.028686430142473233, -0.06902214653101693, 0.11510099389340128, 0.0023739784154888713, 0.046609256438568, -0.07751352280335319, -0.06840480965954601, 0.016778643898156167, -0.10555714556988861, 0.09774240185377239, -0.05786485796191988, 0.024082202998180355, -0.04925303033756061, -0.09597987653770407, 0.0010540321890847512, 0.02467967485866307, -0.12373179840282293, 0.03968903166779236, -0.12131938819249055, -0.134801169360345, -0.035951544028091406, -0.02227999437305041, -0.028719145645102154, -0.03987152197142358, 0.01981632526089653, -0.0738796185665226, 0.026382404289520496, 0.10796685599219864, 0.04810633449053493, -0.026859652563524246, -0.17201056532072354, -0.043396420726951115, 0.01770445862600619, 0.020718726031535194, 0.03312278716231801, 0.036691593722985555, -0.029840078206771245, 0.047493817220684256, 0.016330705473700417, 0.08378708727282339, -0.0160166890577298, -0.10058588096928717, -0.15338485428948112, 0.03574142805753474, 0.025086313876284908, 0.03320418027740206], [0.8080808080808081, -0.06493355435553355, 0.2118801033418628, 0.012977791243745727, -0.08310485287923086, 0.035497303627022816, -0.06321092482739837, 0.1120811045634972, 0.0459210126975595, 0.025509089177487152, -0.1195819584600443, -0.022966032484455237, 0.053473006803198164, -0.119248823619674, 0.10652588215033551, -0.08432849604188562, 0.056403717732496673, -0.04484879468507029, -0.09853667268740743, 0.012891889035786051, 0.0745475134605702, -0.10074256886855536, 0.06497001159495827, -0.14965647135001972, -0.15076671962088092, -0.008698188867863717, 0.010971212389953248, -0.0025976292059765177, -0.03376179590936595, -0.020737330407343435, -0.047121403791846525, 0.03917752418292914, 0.11329572977797817, 0.017822274715780496, -0.05206318231239112, -0.20994527514298755, -0.05896043497718639, 0.03603836718289691, 0.03002463608688076, -0.0161062453724609, 0.08654538047400201, 0.014138197801473358, 0.06574298985753776, 0.0633481412964258, 0.09583624622409134, -0.06535531998704458, -0.07101498713682622, -0.15673132744447388, 0.05368587171272757, 0.0003136689794885142, -0.010098591806081109], [0.9090909090909091, -0.05742422141280855, 0.1785495164617486, 0.012217055943603937, -0.13184226984348285, 0.08091113508047233, -0.08997309307823756, 0.07285275695236836, 0.07064901278582356, 0.0488354849575382, -0.11667664439390775, -0.04175215002212923, 0.031675926968666696, -0.1419339671560064, 0.11456805332169702, -0.06523532982755806, 0.054191697989526236, -0.03613870649222619, -0.092525607986835, 0.05450845563067388, 0.10577739571504534, -0.0763778604711675, 0.03395078646962753, -0.15404335743624134, -0.19997168022731346, -0.027607624578909494, 0.058078043747533364, -0.04402026575834601, -0.010203948115548915, 0.023966942280653485, -0.028106183053003816, 0.07498491806162576, 0.09563181219852691, -0.022150678072574093, -0.04088969551038143, -0.2488777691553815, -0.07285575456335651, 0.06050098179912384, 0.02674761851448579, -0.06546737912094423, 0.06694970762739468, -0.009099167474163922, 0.09930244746023226, 0.04352837906988584, 0.06143387182856306, -0.019331270421701352, -0.025414250482562475, -0.20140883932422593, 0.02281207815309138, -0.01823367338105567, 0.015575195053302866], [1.0101010101010102, -0.018292025981582145, 0.13086733010958895, 0.05745474124495857, -0.17693167257372727, 0.1105801589686085, -0.08841424451725521, 0.07952129682650204, 0.09369016199710462, 0.04605472992091571, -0.13745592189921596, -0.07334486215436138, 0.030530291089918178, -0.15150051531928962, 0.07027896593113073, -0.04508197004045093, 0.015787363028293547, -0.04162958129062607, -0.13452078237168186, 0.0992905056818863, 0.06493266782494128, -0.1076276076135691, 0.006996871652767314, -0.15886936831034598, -0.17535252398123802, -0.06950787894737459, 0.03137016987878111, -0.04742881553957868, -0.005692383196079491, 0.05972334372602433, 0.002023728994003708, 0.0711449845231538, 0.06581183070718302, -0.014164530463071034, -0.04374879737998851, -0.2975830670834939, -0.02838650742771895, 0.09311025399270433, 0.04944619423286249, -0.06564550838036042, 0.057357556347319164, -0.04852049629715746, 0.14134549641831815, 0.000990840582995832, 0.09197140875977164, 0.009789016998579217, 0.003813723743694219, -0.1740502992029162, 0.06388115332506589, 0.02463481019137787, 0.04861925313753418], [1.1111111111111112, -0.047371813769863186, 0.09694178496029712, 0.08851211709790568, -0.17033163407521792, 0.1191111982398035, -0.10691504717538722, 0.1274989998167455, 0.05421827744289556, 0.032658108123374545, -0.1339814888719003, -0.12169789948769909, 0.03614749901309876, -0.169056417853599, 0.07198410106291497, -0.047541767080099336, 0.007575127011819973, -0.009674301791391046, -0.09202677864186898, 0.11219953306393095, 0.053279863463117236, -0.05831034978489547, 0.0174785378050264, -0.2009091324568602, -0.14140796969739947, -0.05733976240766925, 0.04896713650712795, -0.04477944469501641, -0.0018564240175304374, 0.09636361667419935, -0.030781964589157607, 0.09026777261476902, 0.07264118309823607, 0.01112013494585029, -0.06731274286107486, -0.3340713913706565, -0.054008995722663114, 0.13684476922777233, 0.06797421443809197, -0.01770199294733346, 0.034114304523598246, -0.015307488386612285, 0.1549242487858933, 0.05027548448047876, 0.09406798821887644, 0.04996442772782736, -0.011760299232903506, -0.22404857912328724, 0.04196201083175713, -0.013362396840796296, 0.049084589050919024], [1.2121212121212122, -0.07883899181485568, 0.13929146748620586, 0.06794516122754281, -0.15165056445977831, 0.11464669494712387, -0.07225579228324686, 0.12089046996976456, 0.08077853374549515, -0.00996758328898617, -0.1343175421186189, -0.11929180247212241, 0.06736555714913786, -0.14459700434609993, 0.04326595844164218, -0.028607660231773118, -0.007232060159066177, -0.027302494107546448, -0.11120807789194458, 0.1222178064857127, 0.10105222733498456, -0.012889064457344009, -0.003436875283694206, -0.16940793195697104, -0.11221471619014883, -0.01686351117125174, 0.012964347380730892, -0.0883328431786039, -0.042787318199503974, 0.08987639972073076, -0.03041162732695707, 0.04205124327612529, 0.0677798578256902, -0.02396022054563951, -0.0471203066368063, -0.3361887400978108, -0.054020378537584006, 0.13109884137252129, 0.0485397840057494, -0.05315973678786638, 0.05722160697099606, -0.05341511173100093, 0.10801182900660986, 0.012480802658527766, 0.09947917947081335, 0.08711585778035985, 0.016722480497613643, -0.24091668648516157, 0.04438544084332181, 0.017509155509588686, 0.002244916244736911], [1.3131313131313131, -0.11800130276843017, 0.18464645247415926, 0.07756851307937693, -0.12896947395460764, 0.1384918480002733, -0.07751816425550655, 0.1526939136180624, 0.10156643820635458, 0.022152946944363705, -0.14044616742948143, -0.15259612581595008, 0.10265275218664503, -0.13587699220544297, 0.08957017504658893, -0.07013250620115623, -0.04440380243239865, -0.024265955291625927, -0.07948939418779974, 0.13137053920057096, 0.10847746165349079, -0.003309726769470273, 0.04165562601162477, -0.13091905335005685, -0.1525534974624932, -0.03824570510474527, -0.005742838564150653, -0.07481431388675984, -0.007656496559705801, 0.13952495139216015, 0.014486416286038944, 0.0686673754997256, 0.019306780000765668, 0.016819603565405433, -0.08964948505302725, -0.375340318903204, -0.027247383909820358, 0.1258287438690868, 0.09569010294985905, -0.02567837169557475, 0.02851324376850451, -0.048410027496843394, 0.1346936141805913, 0.044449083507953645, 0.08595270610646, 0.06276821099207497, -0.008258880451499168, -0.28593600985676176, 0.050052831599122195, 0.05507244402141945, -0.04090584419419108], [1.4141414141414141, -0.14603155350593094, 0.1557442943460039, 0.07068629830934992, -0.13100009782443994, 0.1697154757965521, -0.11750964181603615, 0.14641887329047507, 0.1438202525779682, 0.020954638423295778, -0.1494794532511134, -0.12130192113304457, 0.1019857832571366, -0.08719608461431465, 0.08274249822458926, -0.10688628403995587, -0.01573666531770511, -0.05674677681911061, -0.11307517147561917, 0.10023946707186214, 0.07742354749624919, 0.037517815667487416, 0.08831919288956587, -0.11756420485864484, -0.17603870834627536, -0.06719115923538478, 0.021682574015838108, -0.06715489305587377, 0.016293512563172845, 0.12898244958834626, 0.05888376339041684, 0.07127889301797985, -0.028888120057515954, 0.033523278434063136, -0.1185737957421748, -0.36734800052227423, 0.003966909854228939, 0.1519370513713133, 0.1379135361914858, -0.037786937433482944, 0.02765999292716534, -0.03333910787245288, 0.14057572361581133, 0.07262561681485781, 0.13164169285712357, 0.09769462702558358, 0.0009657877574359153, -0.3298188496560976, 0.06364312628484545, 0.08302503694989567, -0.021104793070385295], [1.5151515151515151, -0.09816917503519398, 0.14179681942746472, 0.07992604860824855, -0.1442344256465871, 0.2124445931517671, -0.07735043327662512, 0.1774723032179951, 0.14472738882302333, 0.04666084490985707, -0.1734183517666648, -0.17101854087629537, 0.14791498015604201, -0.11821382826515503, 0.09379383068129823, -0.14970404164345258, 0.012109035560499887, -0.03528460698213613, -0.13266442649849036, 0.14268342000345174, 0.02842867928564205, 0.058762454954366106, 0.07516420994261007, -0.13992273145962314, -0.18146596593232237, -0.06920969531797844, 0.06428872157233324, -0.10746670633949187, -0.004280467998296698, 0.17827670991681469, 0.02215549122475685, 0.02423665572814055, 0.020971509418871687, -0.010132233378194418, -0.07772101587273994, -0.4130015713785243, 0.0020565480340073543, 0.12124189998493834, 0.17193712429041527, -0.07051939418513024, -0.0029582207791746667, -0.028086617558330508, 0.10084935255519029, 0.05724098128757821, 0.14291216341596308, 0.10369058271468269, 0.014331875835835768, -0.305260281434359, 0.014839066043393107, 0.06029555628820635, -0.05132025940047752], [1.6161616161616161, -0.06700086012626166, 0.14673434559023193, 0.11930125908026916, -0.11023741572641195, 0.24508215382391832, -0.04174160842145859, 0.15043314979885353, 0.1659383856613187, 0.03376865217078778, -0.21448086798885418, -0.2110947789251333, 0.11379142698552605, -0.13539179712647084, 0.10050697794166193, -0.1101437399590246, -0.01825660105107295, -0.02990918898041136, -0.08780615387768906, 0.13711100239559762, 0.035187163156308605, 0.0869219158775784, 0.06561258269088757, -0.09174947610252415, -0.1529279747662014, -0.07906323066173059, 0.020006288527928996, -0.10563329644572814, -0.03512305668965463, 0.1897046667783844, 0.04880302219373962, 0.004392770655154428, 0.01641261288780676, 0.009277789310741653, -0.06340150023677879, -0.4096785927942019, -0.0009869363784890126, 0.11299634101946293, 0.19597819158096053, -0.06380368283751695, -0.001367469805269647, 0.018960782920917865, 0.05259527942297684, 0.10156863529163393, 0.11592573557082786, 0.08604993454987697, 0.01053645181384873, -0.34240540892817145, 0.04598098459798629, 0.015023220375558012, -0.08946398655121202], [1.7171717171717171, -0.09980675885300225, 0.12391743050792914, 0.12470337805743978, -0.11482106048131141, 0.19807781359042695, -0.06310862103027726, 0.14153096431573264, 0.20304321781439594, 0.010719134647051775, -0.18381220478348037, -0.2187576986332263, 0.0673868648158984, -0.1185663502689065, 0.09750115993318635, -0.08445451799294687, -0.05343995247777815, -0.07187743795989507, -0.12676068409786737, 0.1025075426398897, 0.08239826713404025, 0.07212875575579487, 0.08732726538191432, -0.09056692484548907, -0.14492346385656413, -0.12769144951026198, 0.046493808319841505, -0.05587376937665858, -0.08335079532946987, 0.2114267670555772, 0.031239394834790282, 0.04812326328327205, 0.05642702246717865, 0.0021533310387308498, -0.04087463444191235, -0.3889567390866209, -0.02733304958068371, 0.12796261535880504, 0.1865590456024192, -0.017362655391344906, 0.0430334134392051, 0.05106100704570757, 0.027134122882121952, 0.14062169182397588, 0.16054725484902674, 0.081067069233681, 0.006626942041579637, -0.31339431107271093, 0.0022729826382756127, -0.008857771280042726, -0.12634454443707777], [1.8181818181818181, -0.06818428398041826, 0.11997759261541416, 0.12399002879196716, -0.13268447660309154, 0.22535809577131782, -0.08720714398492062, 0.16462607829754533, 0.1961093993101151, 0.03417859818972192, -0.2181546732102381, -0.26817678869745054, 0.05803488911824167, -0.11809020746565864, 0.11130596690996819, -0.08544601392448847, -0.07911064095392503, -0.10956076907221327, -0.14014595917789302, 0.05415057641393075, 0.08402644958935017, 0.046129376993576034, 0.09358780871933646, -0.09213627936237538, -0.18882440176268256, -0.1240493614364375, 0.07839215705780306, -0.09502129874550336, -0.10993093471779564, 0.18784802732422282, 0.0505233485038019, 0.0054168548097204075, 0.087908230483972, 0.010891961168416515, -0.014836273906101479, -0.3874410999397031, -0.02593353089341166, 0.08862301998897665, 0.21411292555328057, -0.010145586792680416, 0.04168370122418784, 0.0701823440003767, 0.044726424199287226, 0.13945435672028353, 0.1296781770673138, 0.06442578300928375, -0.028151532897767378, -0.32202939623796706, -0.01160770581523588, -0.04709054028457427, -0.12066455053542963], [1.9191919191919191, -0.09077690927624835, 0.13959374909775268, 0.10591707451091728, -0.1734124898859874, 0.22753583513294984, -0.13057000662910076, 0.17835751892135251, 0.19482226842807784, 0.06883505081959629, -0.17676205868445508, -0.25378394545973154, 0.042316741147245096, -0.13603042505614327, 0.07060556737986284, -0.1117154862978345, -0.1272198651920104, -0.1212586581433636, -0.11845067083426933, 0.059116265595973994, 0.07847832839368613, 0.07858141488273462, 0.11840072912249514, -0.049281065636394665, -0.16999061880773358, -0.16016792671889413, 0.10765399198497852, -0.10094472141866696, -0.07538641494492529, 0.1650423656608949, 0.03279079209400203, 0.04840507362484942, 0.04861008374257494, -0.0311783113445631, 0.018112716631592415, -0.40485729867796627, -0.021651620034311515, 0.11562000595151548, 0.2620928296558518, -0.020280632666710298, 0.0870791229445354, 0.11730125266358352, 0.08132524359802606, 0.09101464829186726, 0.09861631095263027, 0.014778242348345516, -0.0395323585594575, -0.2861193837794792, 0.035018746124020075, -0.021217543422060236, -0.13017012292927363], [2.0202020202020203, -0.09760649090993617, 0.1396293387652392, 0.08225365281598968, -0.21736869667242883, 0.26607456835707244, -0.1488068394663124, 0.2052717870034896, 0.15704544844658683, 0.09615102208924141, -0.18209552169228244, -0.2511949883143925, 0.01989857204189925, -0.12694050005284493, 0.035172149970631374, -0.14026251008477042, -0.09834750822214715, -0.1555044778041489, -0.11390995424656236, 0.09453309838102086, 0.05834267902700328, 0.05694241162651089, 0.08905404646161899, -0.06559162313775702, -0.20962419483720338, -0.1592102217778285, 0.10683391204715302, -0.11171090146097769, -0.08471750420531357, 0.1616705965949449, -0.0021167032626764407, 0.03085535170103377, 0.09081286989225998, -0.010954655823526734, -0.02419514843876269, -0.4535166280907465, -0.06364146949490625, 0.13727028041266456, 0.2839378439538514, -0.006867913058910836, 0.052485523371448906, 0.12258290891255404, 0.09509255104800773, 0.09311034356932145, 0.11979375234317124, 0.022914188641295484, -0.0013322381087842727, -0.305854798853311, 0.04945463721612262, -0.068273625665664, -0.1617270921556856], [2.121212121212121, -0.053603508947698705, 0.1612364378216728, 0.08648171416956926, -0.25827357995234135, 0.26193073506543785, -0.19362253994198106, 0.2508941912280793, 0.12604705681030326, 0.055877334086324254, -0.18715543559543157, -0.27628609989359304, 0.02716639879593412, -0.17243913569740948, 0.007862605298298176, -0.18401177915181582, -0.08915743468395128, -0.1278655281117129, -0.16353578058849255, 0.0806209803151528, 0.09146988877293494, 0.04324067310004319, 0.061860102784768015, -0.023139339566832694, -0.23188120664243395, -0.18135403350384488, 0.14091837413090555, -0.10228311616779387, -0.03849158042976522, 0.20845038746476283, 0.010684430560983088, 0.07327031084905089, 0.08268488969196318, 0.019228322430602414, -0.0059163871294916695, -0.42076693063377973, -0.0550459770627397, 0.11189919771425955, 0.28951004612205133, 0.010153737833698018, 0.023887246116070415, 0.11060433133217557, 0.048277070579695575, 0.0915065853973417, 0.14775993620496147, 0.06396813120496987, 0.034092788615859446, -0.35095204971969224, 0.08113722600479717, -0.058662808172224294, -0.2005114970037783], [2.2222222222222223, -0.021838571070025965, 0.1638320314446507, 0.044708166562771656, -0.24000293430951064, 0.2660029926813999, -0.14920370815879086, 0.23849485741269166, 0.136021109851742, 0.03716581462674633, -0.22897599829638024, -0.2991665944249475, 0.044109308390988214, -0.14178569861129986, -0.03370828297299165, -0.1747339837530801, -0.06195799251535275, -0.17523246265807688, -0.18345766030294935, 0.1301988732084264, 0.06998983524415267, 0.020154165882791626, 0.03385451418170578, -0.013982839481120578, -0.2762372571700198, -0.19177247868524733, 0.17069716971515717, -0.06535112997580719, -0.0669579402029811, 0.20596011208997914, 0.053807602295734565, 0.04573075541380962, 0.08887385214286854, -0.02916905676513517, -0.006850634711464916, -0.4023892429143018, -0.045241785119406124, 0.1373001852311633, 0.3131261532268002, 0.02436315829533875, 0.06890505534943607, 0.12790615972616667, 0.08828170717436576, 0.07274390656547365, 0.1480517969467906, 0.015591774357331965, 0.07902436025087287, -0.3855793593855984, 0.10772827520404962, -0.03850421010510268, -0.2248924715214633], [2.323232323232323, -0.038227376057936094, 0.11397193375655507, 0.05827183754531151, -0.22192935758644688, 0.30677949250794123, -0.12748197795446878, 0.27806499959239805, 0.11582887271715714, -0.007404448248448929, -0.2093266566778264, -0.3432859604228488, 0.08454103158841676, -0.12095126170587099, -0.0001247103173558778, -0.21776914574857936, -0.10231158794598537, -0.1976473411084984, -0.22493573240558068, 0.08993025911012015, 0.10982340668075227, -0.027237383595819717, 0.00028527840573579905, 0.01123804721178098, -0.22945180571697854, -0.2075987915421703, 0.1905730621227223, -0.10265792274990482, -0.02902371438026137, 0.2474860596430006, 0.0364494519338396, 0.08777040745871278, 0.06867859475744728, -0.05634509301810832, 0.0005746849100208883, -0.43350851596291984, -0.07799623071732979, 0.142738897640014, 0.26936718743494836, 0.06634607941354312, 0.08789028757184135, 0.10888384428672623, 0.07661339980811244, 0.09666503187193881, 0.1690730227350044, -0.011585811849331253, 0.04437036658233835, -0.41224725290570463, 0.11105026266066037, -0.045628804071790215, -0.22413962218933703], [2.4242424242424243, -0.07068633068370242, 0.10344196242553862, 0.0879123600639323, -0.24761194099770434, 0.3124104965356286, -0.12211605793832318, 0.24891304915815543, 0.08409720949479735, 0.04223733820125823, -0.23866944130281248, -0.2972669822314491, 0.12093656058829519, -0.13056062321182824, 0.03435777329786985, -0.17553072394694463, -0.12907355114153635, -0.21107950523228902, -0.27442861238106836, 0.13181303562144414, 0.13269747242106955, -0.025434331374397254, -0.013496141709708056, 0.004988352309692946, -0.21697917807161304, -0.23816619527498, 0.14159445961368555, -0.0880881964076806, -0.0045781864135407, 0.2849047866530995, 0.06707580049994954, 0.048934843580182505, 0.029266729825990136, -0.019578462983512755, 0.015054014171800571, -0.38518731625159386, -0.09696566003672655, 0.1825717709672895, 0.22159275915823515, 0.03125369736006322, 0.12124332304264272, 0.13147882515332732, 0.1040205461156958, 0.05218758082621635, 0.21211772641502963, -0.055317684759686916, -0.001284762426637033, -0.3940380721725382, 0.08363400605158086, -0.09105118042890553, -0.2111576253304674], [2.525252525252525, -0.0834031260547101, 0.10265865941565361, 0.1333871106070132, -0.23356579678210135, 0.2811219687646932, -0.13614158095033757, 0.20523269315646359, 0.08439997852515473, 0.010007211636487032, -0.27909913128473773, -0.3311757887548597, 0.1455624441057669, -0.11171876049623682, 0.08297890425867302, -0.20177758320677783, -0.1181670448313299, -0.18544488898397668, -0.3188249528236301, 0.17394258395980783, 0.10333061757360565, -0.03349127280700598, -0.04973055627353372, -0.010650035730590247, -0.21916986521044424, -0.2005543917486436, 0.14559558742740075, -0.04743169038654137, 0.008538853682345846, 0.2577933313002869, 0.027734745051976234, 0.0604994886867629, 0.036468298628776145, -0.03208878676717282, 0.058330689941761237, -0.34254109911431335, -0.08497788853742355, 0.1829839982984026, 0.2657430527559417, 0.0803633258751053, 0.07520879899038978, 0.13761397840917974, 0.11004131215583382, 0.029605433079839857, 0.2605652832002481, -0.023307548316088604, -0.009420269597720679, -0.4234529889581896, 0.09863769858908283, -0.09517284548813834, -0.17092345358209976], [2.6262626262626263, -0.13283427531945277, 0.09294669255356783, 0.1518495377762845, -0.2766518784709462, 0.29923310551888854, -0.17022335084190465, 0.1791748604483191, 0.1294669422409899, -0.0028696878813276126, -0.25689805905683366, -0.30172002975402373, 0.19048711695184578, -0.0650586325494214, 0.08765720070832542, -0.2112980267642411, -0.0808503319190948, -0.1906147676367073, -0.3216448365452459, 0.21233878293415254, 0.08290252882463742, -0.008403634886715916, -0.041050042177542934, -0.03518264725764676, -0.25452345644267604, -0.22339152917850824, 0.12186974122172228, -0.0704241594653672, 0.016471179374115262, 0.2886094948200779, 0.050381963040388895, 0.09815624503288457, 0.06954389059173671, -0.06654923016179731, 0.012998711368223545, -0.3307546908206922, -0.05898177628596768, 0.2126205804972872, 0.26155645625305296, 0.11107198004990729, 0.11571318950549483, 0.1333494825234041, 0.08866679056005977, 0.04077200924000963, 0.2476948718249345, -0.07160847345914245, -0.03231789426887375, -0.38522958908526234, 0.1090217164700703, -0.14100744479144878, -0.20721625139584254], [2.727272727272727, -0.15759163997496872, 0.07837652256419989, 0.1506788544567944, -0.23935988229631966, 0.2506177740606977, -0.17692754672542466, 0.20719478533086735, 0.10272495143685688, -0.016976428671683856, -0.2675325404268904, -0.3101786327929101, 0.18736183484725738, -0.07110807251970555, 0.13158192745931388, -0.24843380927821912, -0.108133911395628, -0.22626674302555966, -0.30854565784173066, 0.23828685145276837, 0.11263882995223518, -0.03830356005231701, 0.003924328907862054, -0.08392509651631982, -0.29319376234980027, -0.2594729580810655, 0.10166723843979641, -0.03621635843127916, -0.0032672925173125172, 0.24115787473778544, 0.050511526832212356, 0.1286402841305345, 0.06892939164488006, -0.060649416765737776, -0.01332193996493945, -0.2958596254583679, -0.039435087488949305, 0.18114285437941244, 0.22026605023359233, 0.11885353763836269, 0.12407240976412875, 0.17576447447417426, 0.12663015255602608, 0.08294662264960166, 0.27392638764785593, -0.09508988844369279, -0.000659112926485031, -0.38857976095784796, 0.1183531791223066, -0.1061110185211344, -0.18420977012691034], [2.8282828282828283, -0.12802538912764, 0.07843795450849521, 0.14922028547523114, -0.2783991873130684, 0.23862693984579114, -0.19899132903443553, 0.1948023294826205, 0.12663315586390933, -0.0430583344818162, -0.258421232841706, -0.3472131412054806, 0.19437931649704943, -0.09880133663809668, 0.08951380688239108, -0.24005850244374574, -0.12954658076806302, -0.24198953635761666, -0.3121498307346149, 0.20105152341335736, 0.08265941841212658, -0.033064492164686723, 0.0087456372245495, -0.03962495474129485, -0.2828400633824905, -0.29522945207446555, 0.057607662284788, -0.0025565187625672045, -0.02947746001408877, 0.27858533678186453, 0.09665490417150588, 0.17625527087826007, 0.08717660732432143, -0.01124457772973285, -0.0013675903794523585, -0.33303648214997017, 0.0066752183367064025, 0.18116055494770333, 0.2352799904013777, 0.07761617140914791, 0.08184657616080643, 0.22471291711799665, 0.11436146120477861, 0.07202349417469076, 0.28179766051837213, -0.06367193329094274, 0.04733316600299705, -0.34859975017521944, 0.06926704274215324, -0.06716225259564396, -0.1890595444729347], [2.929292929292929, -0.1764998920030061, 0.07295561739160904, 0.19588957753352793, -0.3114936108011249, 0.2694953888591303, -0.15288756581790408, 0.20295070243786592, 0.15280028729102485, -0.07364588984195891, -0.257144771023213, -0.3915494231349761, 0.15913915744873253, -0.08059639292526666, 0.08474896328542046, -0.21403023624587347, -0.16990714761024062, -0.21050855954757616, -0.3214145787859379, 0.18525065819988698, 0.03528026450921195, -0.022658573089081313, 0.03407664329340723, -0.07476800415800902, -0.3157662761176753, -0.32808132265290463, 0.017149904783423646, 0.03365327344509045, -0.0595158286473465, 0.32613018523456644, 0.11299467598272814, 0.1885048541842105, 0.09057973724459727, -0.056088912076863826, 0.04338850098495815, -0.28902561799686943, -0.017488713016694322, 0.14302087950408574, 0.24385084048509084, 0.07979403119121771, 0.06011604565571069, 0.20830855216351743, 0.07265032988019898, 0.09555312747695609, 0.3098499004839268, -0.027573874816658482, 0.09342184501353447, -0.30920942541090063, 0.057062669133059046, -0.06513171268779697, -0.16137382036061382], [3.0303030303030303, -0.1666155543101568, 0.03199889621125262, 0.16702436628324008, -0.31475581165659017, 0.27710793010031787, -0.19307435023706518, 0.17712091600524282, 0.17940593525921203, -0.05143020286301155, -0.3046655269384938, -0.42185380129668737, 0.11879228375888995, -0.11037682692222675, 0.07896453770639054, -0.17705161079962226, -0.1983638749624878, -0.2192999866643487, -0.27227332675351834, 0.17024383329858225, 0.03959595356624698, -0.024085448079425566, 0.019269101501080337, -0.053334598786652636, -0.34570275840973086, -0.2826277250758397, 0.04501630989470047, 0.04950566219964418, -0.10778744010822733, 0.2851871398648781, 0.13469597207380327, 0.155919782447014, 0.08211054268612858, -0.03708590965621578, 0.05507122781567333, -0.280067650944586, -0.04392488183390856, 0.12250304455555722, 0.235057562880729, 0.05119976007341506, 0.08988559549526237, 0.2115569066032025, 0.07989106275040357, 0.06893249560512421, 0.3169507971013314, -0.06396447237592892, 0.10078422966978551, -0.35334907538628885, 0.0611357112854634, -0.07486229160383594, -0.1163529859925812], [3.131313131313131, -0.15623510040587144, 0.009355188213996682, 0.15818918010102337, -0.2871608897162529, 0.2422863805533182, -0.20237479499455088, 0.17097637468056015, 0.2218555154195377, -0.0017952166230126576, -0.2783860655475608, -0.4671738290958989, 0.1671811611196156, -0.07466375588960106, 0.09359885548536324, -0.18357016762335654, -0.2145845350401715, -0.22072671558492196, -0.30038344234492287, 0.18201164112876436, 0.04736635560980182, -0.050795363215870894, 0.026545458319696697, -0.03474952050896722, -0.3818461745013291, -0.30317572602043363, 0.0679453681642384, 0.045174643356859265, -0.11606550017994323, 0.3283888449993263, 0.1732090191194721, 0.14973541091550577, 0.05740389064371358, -0.05550535779271316, 0.015272145548256393, -0.26817028020273803, -0.08758173988976466, 0.1389906089391324, 0.18834047796263467, 0.05013219834353219, 0.07054738404115296, 0.17998401050764193, 0.08170012628966701, 0.06754080707863865, 0.2674364386949818, -0.07181274181220079, 0.13059690283725403, -0.354569193426219, 0.0959123873045084, -0.05605832590838973, -0.10055931745464922], [3.2323232323232323, -0.1957203318646658, 0.053702897988269375, 0.20715573777895172, -0.2517164381457473, 0.22527185659126864, -0.2515371503943702, 0.13902160199762398, 0.20413638802844236, 0.013992889532860216, -0.3018098849441822, -0.42695160827187195, 0.21176691566415015, -0.027731615883479298, 0.09680838963042597, -0.15974421566500874, -0.2644094792448577, -0.18155876286029032, -0.29148937855099655, 0.2019413227185021, 0.012567162136034878, -0.09300805040843818, 0.04409298951829335, -0.01988585785151916, -0.3378221239731045, -0.3212553673298709, 0.026653865790507436, 0.017454492649235227, -0.16172139777112918, 0.28523482191433375, 0.21015526683995292, 0.14837884078500557, 0.03588661991701937, -0.06606144690275388, 0.06317762091097498, -0.2766714573488823, -0.07631252597356691, 0.10789038027715935, 0.16680786560748195, 0.004434280331612174, 0.026147118233221876, 0.20140947598255077, 0.060823666733160725, 0.08479765252022303, 0.2199344055500364, -0.10829590092617886, 0.13199334566638524, -0.31204139389140184, 0.08640388819653241, -0.07182111425995383, -0.10726220228374639], [3.3333333333333335, -0.2075259873703548, 0.0063573621216635665, 0.15999692345027688, -0.2806777936690314, 0.27044917120610124, -0.24473125743473806, 0.12633364878120343, 0.222030676405731, -0.01704304365061799, -0.2539272009265156, -0.39321444387909277, 0.25465441696851276, -0.06648867607278948, 0.12989119002312075, -0.1739397907971282, -0.2840551957320513, -0.1676510917982538, -0.2670366164877345, 0.24016294259562776, -0.010178560356559934, -0.05057616197239573, 0.07585436350604816, -0.04108633206957675, -0.3175452298132661, -0.3138713167124645, 0.011639029246183985, 0.03335088302977009, -0.16014377961493445, 0.2750294713435065, 0.17170247649727421, 0.1383574272861346, 0.002374319032277361, -0.0829619904309585, 0.1002851310817012, -0.2675848625435754, -0.05886445786638758, 0.10954896195151359, 0.1997018368778865, 0.005087588666858491, -0.014432287378947542, 0.23574875926288613, 0.08764896833534848, 0.07817280096308865, 0.2656035144850796, -0.08526159075410236, 0.0997865303317145, -0.3247661726757943, 0.11394935217766633, -0.058109776350539946, -0.08892431560612993], [3.4343434343434343, -0.2538783817110979, -0.039642768914271355, 0.1801295748596285, -0.3230136067421411, 0.2234876435060222, -0.23707028059801405, 0.16272698785503645, 0.1892126753633593, 0.012561957687254259, -0.20905860024173012, -0.3953862370192457, 0.30335030312850164, -0.10886870683510118, 0.08987011230105903, -0.19501946972999967, -0.2789457600055405, -0.21360936878445122, -0.29506933336690605, 0.20392797268872934, -0.05651625516201371, -0.0915087309176949, 0.08943837507394642, -0.03197068520764876, -0.3142330929543744, -0.3293647108875443, -0.0017857389891375308, -0.001522958773286849, -0.1424664551389693, 0.2432453611230186, 0.16843062643682638, 0.1123680210714439, -0.029018492417803833, -0.06398139112083208, 0.10985190192093708, -0.2830751957708815, -0.05537931010435877, 0.14003321782074302, 0.2252413461165111, 0.01676985597343838, -0.007523015375371458, 0.2084702661784138, 0.10214606304416546, 0.05658469303461325, 0.22832393165681744, -0.06709305100521873, 0.08210144344060649, -0.36895996007317633, 0.08168989554404851, -0.09450150413947439, -0.1058445852434912], [3.5353535353535355, -0.21483722536689032, -0.0613287329422894, 0.1326467312481097, -0.2941221270318193, 0.25130499622161706, -0.27335585446528027, 0.19832635538559887, 0.21017006974270402, 0.02587684109165967, -0.18649160289278063, -0.4326138011193704, 0.3342973688250318, -0.14906188707095702, 0.0491018400262242, -0.19698682386124197, -0.31400075921202847, -0.19690805768548206, -0.3133878204130847, 0.17002030977561935, -0.10138261579249538, -0.09652527748219716, 0.11111015307946011, -0.030495300082228997, -0.3087471898967497, -0.3664863870794513, 0.008623029848006059, -0.008440950946218058, -0.1637855135268428, 0.19838603859246462, 0.17194866304852804, 0.15017338373312547, -0.05635506979191253, -0.014521517409105199, 0.10442556572188952, -0.27684909433792104, -0.03702707257406471, 0.11288693267508856, 0.1818544957888763, 0.016503755895998465, -0.010929087476391677, 0.19341025040395088, 0.14290000239414163, 0.05055357885140983, 0.20291710520588868, -0.028832720848170013, 0.0993494589905343, -0.38285946294444095, 0.11234720346820908, -0.13923920585218774, -0.1370347629138881], [3.6363636363636362, -0.16674513966565918, -0.05309431592061251, 0.11473490385676331, -0.28937212691688907, 0.21944338220549442, -0.2561339978611382, 0.24233431034224798, 0.2091024082193047, -0.01812569296469632, -0.16394110083763486, -0.4485374771706468, 0.2957065691158606, -0.14624049276116297, 0.0010456544940270207, -0.19782186470419003, -0.2772573662025152, -0.21449156848968218, -0.3166837804686529, 0.1945310593433142, -0.14567011892706808, -0.10713335387333273, 0.14216879413086464, -0.0354523293814529, -0.2975127387114492, -0.3656335355965765, -0.03389894767616713, -0.055144317943833676, -0.18266874263751814, 0.22988573422071074, 0.13644188885834807, 0.1535644315900509, -0.10283950571242303, -0.008262595769410418, 0.11490054038151408, -0.3249720247035337, -0.0425037701195632, 0.11327989973454224, 0.17312487409855934, 0.055403391880153016, -0.051286922086726514, 0.22313883318869163, 0.12751181427528324, 0.05224546755606522, 0.18358823828601997, -0.020165334426603662, 0.11619634757856642, -0.3681765183919482, 0.12069600335625379, -0.14552259599876394, -0.0897509167018196], [3.7373737373737375, -0.21075094078385545, -0.004005035628129802, 0.07208761004332072, -0.2607466406353478, 0.19080906905055744, -0.29184662511533405, 0.23290830930845888, 0.2032945351442321, -0.023001996550582375, -0.20885862175601752, -0.4524472297277272, 0.2997805524467134, -0.11240990469170356, 0.030492912035843596, -0.24165875247868907, -0.2792409436225569, -0.256262985120103, -0.2878850506895498, 0.189178864762072, -0.15843812261332885, -0.06468020997967916, 0.1716590908984546, -0.0036399997849896476, -0.27174477767582084, -0.34465578400566954, -0.02763125713749835, -0.06646290215171409, -0.1679065649762957, 0.24772725412467445, 0.16821542486054927, 0.19609159338099127, -0.12608830797121903, 0.014868451068534374, 0.14251508334891988, -0.2920539058582972, -0.004171540722005332, 0.15950346906167623, 0.22124329337823276, 0.07980741961760425, -0.0133133096334241, 0.17399741682670541, 0.12155253383808372, 0.059972476806785927, 0.1960907566852896, -0.03167279770154265, 0.1326952725062195, -0.36227030123181575, 0.1683998096941885, -0.1845427882100013, -0.0810427672230103], [3.8383838383838382, -0.17169634631100503, 0.04525918811216701, 0.028176066477984263, -0.21874193634947675, 0.2060686913427665, -0.2909234753899654, 0.2811393306590358, 0.21795211492408478, -0.03318643856531582, -0.19945201032348917, -0.4844593235274624, 0.317974362701087, -0.06814395645930965, -0.004393082845470672, -0.2718269800144194, -0.3058491600714634, -0.25174350003891816, -0.29922067135949637, 0.15763913591913276, -0.18295504687794178, -0.058379630486332566, 0.21069588053206548, -0.039712193318343206, -0.2788339615718312, -0.3870450616332248, -0.00623673126911152, -0.04056147053889059, -0.1402810861623201, 0.21627160619135272, 0.18496608415382385, 0.16371279817279005, -0.1553135384096061, -0.005469404033676361, 0.09348812050943808, -0.2955017750124487, 0.03318827040680531, 0.18919385051739782, 0.20017938286780826, 0.12882015365536156, -0.01672071339550836, 0.2152523788073257, 0.09061657701989902, 0.04534576177797509, 0.17733416778471486, -0.01184404034680175, 0.1554481204934742, -0.37357037208378846, 0.142234836061949, -0.21594904669436943, -0.06833298480225829], [3.9393939393939394, -0.16400619637100175, 0.0945709253602715, -0.01068330185161042, -0.22064465975668865, 0.17047788594884944, -0.30404728013695276, 0.2793997250373434, 0.215795473101481, -0.03743766744342096, -0.17773934468515112, -0.48235821414229973, 0.31627894943227897, -0.11786037177834569, -0.04633631352158729, -0.2554930902053288, -0.3538654288423389, -0.2796118690517351, -0.25793658216280513, 0.1713518747721462, -0.21649210648889108, -0.08017962991648794, 0.18406212384437295, -0.004526719985888904, -0.30946749691866127, -0.4290012469930162, -0.024150988924567643, -0.0661386320029908, -0.0906933591129872, 0.1834731605075459, 0.20433874255190326, 0.18727765279601968, -0.1401930094287867, 0.033582951868911026, 0.10782711635183923, -0.2739399159366157, 0.0316322583662628, 0.19298936387446408, 0.18466820271161014, 0.14704694545632707, 0.009450434200901824, 0.22408436374073273, 0.04161094906188275, 0.03158168753426789, 0.22686630280555456, -0.04609552309957479, 0.18591219866665218, -0.35942329091626124, 0.12281201422528301, -0.16959582589073, -0.03933261210419074], [4.040404040404041, -0.139758227461204, 0.05557575845692779, -0.04375641103706733, -0.22468929275567026, 0.15857861300955475, -0.3291365412010992, 0.31711180328429256, 0.24389382963880188, -0.07010812658471766, -0.22355204959980163, -0.45541572303522776, 0.2667384685031426, -0.07138107813689015, -0.02639761211743097, -0.24251778961261022, -0.37453330753101743, -0.2931097663655175, -0.305859898065867, 0.16517631971973137, -0.23250424528973576, -0.07589542733712333, 0.15818757821702487, -0.009464934515905209, -0.33142893956284497, -0.4487210933767205, -0.005825677699325186, -0.03417103350290779, -0.07343247511741147, 0.15382513685666122, 0.20811440697313288, 0.14369297837674533, -0.18061360710167948, -0.015991243330582994, 0.14665245849314124, -0.3000371257541099, 0.03168888593869562, 0.15063037591544415, 0.2226404728799369, 0.13904884991062216, 0.042979600607011295, 0.21335411649945604, 0.08720528765104263, 0.02639029071293505, 0.1870237836087778, -0.0514587154914896, 0.18411202309225325, -0.3213641560420921, 0.11688217887380419, -0.1776545813880413, -0.08142157351296471], [4.141414141414141, -0.1267398338136664, 0.0720239030533218, -0.030987783086961925, -0.21479137720757494, 0.14915206626681965, -0.36550832899776503, 0.3079997253089909, 0.2502722755935301, -0.06459210411779703, -0.22496721625616162, -0.4306929952118126, 0.3024675422053818, -0.10490021140816493, -0.07191066428338469, -0.2010404827221284, -0.4126915202891752, -0.313285774309199, -0.3184621929210071, 0.13288163136358655, -0.19534752073885495, -0.08601943945108939, 0.14344915915598522, -0.05580220710972498, -0.357733984097077, -0.404388788243018, -0.0354542367015023, 0.0037176548980187296, -0.09615799822701585, 0.13325741395421725, 0.21054245298948915, 0.18552472682295018, -0.14651694490550732, -0.034945960619530037, 0.16347798194904956, -0.30030704650673784, 0.000700714448894732, 0.11085308445469076, 0.25050680865748504, 0.11077137581024907, -0.006022185481684504, 0.24294087528164124, 0.12560165585543887, 0.02216712388871508, 0.1372128519810472, -0.045398359197566525, 0.17890154748718223, -0.2884945698582103, 0.09569009641925497, -0.2222459846959343, -0.12922578115416175], [4.242424242424242, -0.11855561457378862, 0.0744225865021531, -0.037148473622977594, -0.20485949913514648, 0.16504860972408, -0.40357921578543926, 0.28997704793642926, 0.28518831282321017, -0.047034533836100234, -0.17628479036177253, -0.3942250782826723, 0.27586272287053165, -0.10919674238204263, -0.09537557405243775, -0.19176542049322054, -0.37240181908485365, -0.27994411773879363, -0.30458800682255316, 0.16395775153930026, -0.23137683288175814, -0.0812376766266614, 0.13889316622903505, -0.012525991165945993, -0.31573730428534696, -0.41448464927356693, -0.0750163452508244, -0.02742616137830002, -0.1353625380831848, 0.09191624054319458, 0.24408578600586872, 0.1662957848649207, -0.13735751847989663, -0.03841021971433992, 0.13103000746065752, -0.26692038593548933, 0.026238471034828667, 0.13707681049365533, 0.22855547227707515, 0.13366220581334415, -0.03611776656414235, 0.27465252426645803, 0.1446239437313156, 0.0009081987087976584, 0.13220566316598412, -0.06028144799706778, 0.19537452461244098, -0.299699710330516, 0.09743157240683145, -0.21747836315307062, -0.15336664358610325], [4.343434343434343, -0.1665117013710963, 0.04173757748302619, -0.00405809716258012, -0.20442215401177072, 0.16623087709542436, -0.4483404031397468, 0.30422390775297053, 0.2684370620862888, -0.01439174977306161, -0.22150215687169822, -0.36781289434452985, 0.2869919612935713, -0.12265762133410463, -0.09495665754510392, -0.23093874410299314, -0.4017020517986836, -0.322061444885214, -0.2785921459243598, 0.13603986262479273, -0.22806402001576725, -0.042691309306908946, 0.1600449499017685, -0.0320373514159988, -0.283205269382712, -0.45553039705578685, -0.07743413485248837, -0.047755270620356165, -0.13983641274514338, 0.05055350998392224, 0.2122314093641622, 0.14976962380289385, -0.1782683722020217, -0.016072915282947287, 0.1116340236064827, -0.24605200991416437, 0.036503308937147955, 0.16554527921964382, 0.25373248873741955, 0.15737728796361747, -0.0764323134515473, 0.25803643871575255, 0.11570556830013351, 0.02771415878591893, 0.1297050797654509, -0.10279217256653597, 0.20585029778252498, -0.3025800063663211, 0.10129994505355847, -0.25063341185612376, -0.11288839353613689], [4.444444444444445, -0.19550904360381025, 0.08603360197452878, -0.0300788782061329, -0.22373430103742564, 0.16448938748044856, -0.45485047167044196, 0.3251604523345703, 0.2872008966592711, 0.011005784867886097, -0.21361695945797304, -0.33256055009876906, 0.30522645361358974, -0.10505103039255134, -0.14123128778445665, -0.2379241595272612, -0.3941713975154096, -0.31386446550590164, -0.24607097623602503, 0.17744192641887768, -0.20956979072522702, -0.02606437418211123, 0.12286163575015946, 0.013843259249612008, -0.3037576617116095, -0.49377934945448265, -0.10885665904665008, -0.023008199279854417, -0.128388345896421, 0.0864201511380679, 0.1961357653988205, 0.10392505296725785, -0.1776251545482017, -0.03895169908548839, 0.10665021296030441, -0.2677861320216555, 0.030897249404853083, 0.1418914775727833, 0.2297713616293962, 0.17476685171659975, -0.1024018314005149, 0.30016275080172394, 0.13362147004581534, 0.012488751283967736, 0.128720817446612, -0.0878278446879805, 0.2182905744873569, -0.31960371400730947, 0.05696415542987322, -0.2951262227489229, -0.12087914536844571], [4.545454545454545, -0.1910405557859455, 0.06021961057215401, -0.061073607414159195, -0.2195990030025144, 0.16689156730884744, -0.4277799336117633, 0.3493951340075798, 0.26823348242125405, -0.035187588643835435, -0.2564610196660295, -0.3557708065639403, 0.2854198128125582, -0.12265457806463205, -0.13308035948868435, -0.2423279806788277, -0.37555097118826575, -0.3076280332195773, -0.2920342190341835, 0.17100511589549858, -0.19733072231957852, -0.06608000204052705, 0.09574560959848875, 0.0591086182194911, -0.3255552339676886, -0.4793801267287495, -0.15741745535071705, -0.0714910393813125, -0.11197002628683264, 0.1010191036318606, 0.18053528288227924, 0.07378119064369641, -0.1580117333037421, -0.019306532089448276, 0.10247501607944097, -0.2573093466369577, 0.07295921721903642, 0.1073086410044676, 0.19647694687225697, 0.177548939891118, -0.07925652215355457, 0.28997470724688335, 0.13453790865008025, 0.0008470782155569172, 0.08217838433862071, -0.06522183169917267, 0.2569245927778917, -0.3059888449130211, 0.08998067300931789, -0.2845073288550632, -0.10277901342495672], [4.646464646464646, -0.16412903867538034, 0.11011283745647521, -0.03988364155586763, -0.17710630866223523, 0.19752015463311956, -0.3926885153810805, 0.35984659672254854, 0.28431302857263374, -0.005676223453675133, -0.2784468452361987, -0.33285177391411275, 0.2951491104181256, -0.14139964401605612, -0.13131428734350747, -0.23388208980146558, -0.3512831281281289, -0.332444723870586, -0.26358034036624334, 0.18742184795384428, -0.24542291021448434, -0.04506436445202974, 0.10419314539204896, 0.08521565629071604, -0.32739853152032894, -0.4296377134107194, -0.13486955567961006, -0.034405030090901, -0.08982452758792231, 0.09408725869934886, 0.13249216108501644, 0.057662627108475084, -0.2023080390939626, -0.02629036251216324, 0.1152803232966316, -0.2912237615782296, 0.03235192253392916, 0.11714546362114552, 0.17601665139926947, 0.19249394993627797, -0.05007060488117635, 0.25895320867779287, 0.13794500307820612, -0.025720113036284787, 0.05561525784257089, -0.1045975264743262, 0.2800076358583407, -0.2963278214526867, 0.1396355348605209, -0.3344547732654962, -0.09874304647743148], [4.747474747474747, -0.18905951576154076, 0.11838221897146509, -0.004054149023189874, -0.13005122845921335, 0.22795926270004893, -0.38056024863812143, 0.39569075146171107, 0.26976049634788496, 0.009716957254409454, -0.25826466263565406, -0.31408723772301894, 0.2842483110810357, -0.16829337362546773, -0.13864420921057743, -0.21339687189185946, -0.3549496032189946, -0.3668890033512929, -0.2288577821965151, 0.15339965133099928, -0.20668802834657363, -0.057722420979192585, 0.06373656934213151, 0.12874797387859083, -0.2857329315070026, -0.39036987450288574, -0.11906690722758614, -0.04209752577600338, -0.06631771126696966, 0.08886305737232977, 0.15434081042535638, 0.09330403835794696, -0.2118669056922472, -0.02777684088687348, 0.12030606438867415, -0.302351949814118, 0.046021471698652644, 0.1479373358466159, 0.2143599055302264, 0.16418178771028258, -0.09269986657742882, 0.2639707430276616, 0.11350955092289768, -0.06312133233169842, 0.029070064267948614, -0.08644183063919729, 0.3143683031894671, -0.2574601607005284, 0.10321947090065808, -0.33882684313793704, -0.07276554911601149], [4.848484848484849, -0.21046994672085428, 0.08671011903452266, 0.0018514395364120752, -0.1404717674695137, 0.19272930631029983, -0.392571479798311, 0.41068143529051143, 0.2258917449621017, 0.02021628749039599, -0.2920324686758491, -0.3289991614308524, 0.28979413578849084, -0.18716545583901598, -0.09711761099776284, -0.22146809900476738, -0.33060464688268676, -0.35805957285992274, -0.24853190727261484, 0.14433800482933398, -0.1709102891932651, -0.09166720803570493, 0.10464820625728957, 0.17738649469966006, -0.24033454108833732, -0.3822100968968102, -0.12328958584709714, -0.05989347889193555, -0.02299100286465678, 0.047685907299661504, 0.1233524676596743, 0.13113376090823395, -0.2571936650952194, -0.04178691515867343, 0.13882385079765433, -0.3355702122946577, 0.0370479469782503, 0.1590737332719135, 0.23467669006403047, 0.1838019095188191, -0.04896910589133126, 0.29638798014346496, 0.1392503558241175, -0.025663143786785532, 0.06033182344450131, -0.11263714621794794, 0.36306450871373414, -0.2915547158803791, 0.1448658455749361, -0.34201789328026866, -0.08319368482313078], [4.94949494949495, -0.17523043793672366, 0.07539466122630169, 0.022293480365297786, -0.11059724021397979, 0.24207466401836958, -0.374580376156587, 0.38773002421025304, 0.22028259348197524, -0.029703799860757284, -0.29280381995569454, -0.3160592453747929, 0.25012654741047535, -0.22088597998834397, -0.1045386376703613, -0.1949414699503928, -0.3480191607305123, -0.34737522565944695, -0.20289400316501296, 0.1640357934774227, -0.2000529555822198, -0.07178669918368684, 0.1177190043016147, 0.1413413779972674, -0.25863870916124787, -0.3800070710089693, -0.11949598043672564, -0.031964862354443596, -0.05465560212237072, 0.010516398110179938, 0.127176442973981, 0.1773836685721771, -0.2208004173833956, -0.00992812591956533, 0.13531000244080071, -0.34907662792490235, 0.06252914661093696, 0.2090076215271477, 0.22883781956992877, 0.15897385849857715, -0.06639245949415563, 0.29045526485198986, 0.09467110688266404, -0.047282314316039416, 0.0995811518706533, -0.09924326273110616, 0.3582332967493271, -0.30871016739640844, 0.11687517524434138, -0.38595339742054985, -0.07103371593841899], [5.05050505050505, -0.1277297885760649, 0.04436201411751665, 0.03280468391711569, -0.09708842543888714, 0.19885143759348867, -0.39320382573061513, 0.4235775107733586, 0.241115178458585, -0.0783923217143937, -0.24734924882594606, -0.32700362709247854, 0.203092631380201, -0.25809420315207676, -0.07361956318351957, -0.23640542781387275, -0.37977366734392926, -0.32438824504428115, -0.16341375587481516, 0.12259205885352462, -0.1821494636621579, -0.1215194326506123, 0.098507268160652, 0.18004458779518046, -0.28582922538114097, -0.42109444443306443, -0.1658570266586884, -0.07979899009366691, -0.07239555016850391, 0.01895826139811483, 0.15362770107378365, 0.14277321482498287, -0.23208938020092282, 0.005361287860418333, 0.09892324031109809, -0.3521486924355987, 0.06377218895600398, 0.2406315958711835, 0.2678174704339206, 0.15677969307376594, -0.07001220004861226, 0.27549161422788593, 0.10118578236210295, 0.0014310755604487954, 0.11598441061731865, -0.10570962721040286, 0.38847315966592644, -0.32909026115137585, 0.10209861696271107, -0.3477356396333522, -0.037986425266500694], [5.151515151515151, -0.08924445922695434, 0.03543908142004765, 0.0387264122439197, -0.12409150891398384, 0.24843301828972814, -0.3705400274306834, 0.3916600075740375, 0.21685704423993174, -0.11368183678063234, -0.2384137325894218, -0.3255607676846276, 0.18644871132181653, -0.2924046733233401, -0.11763276177637237, -0.28225147602294426, -0.42472137985399006, -0.34377576465682036, -0.1822149182781221, 0.12897527844556905, -0.15028953999796035, -0.15487927214203803, 0.10098700150232265, 0.14186365481236135, -0.281708310455938, -0.4228856278463888, -0.17093346003169804, -0.12490651474117767, -0.12197815798931849, 0.008544089367594866, 0.19042938933777365, 0.1321374082639479, -0.2502654333731516, 0.03455304300719448, 0.055131101232356074, -0.3729108040154138, 0.08325540656964643, 0.2892288853925271, 0.2665599907142017, 0.1503626206307387, -0.08099880101859776, 0.2901825073830877, 0.11670137891956857, -0.04277050522185042, 0.14291452373207517, -0.07364744092649289, 0.4370440671939006, -0.2795270803041421, 0.07787798448081837, -0.3526701253290224, -0.06408381180164013], [5.252525252525253, -0.10329367483326411, 0.04490708831021819, 0.07476583133467837, -0.16897079962769013, 0.21077798755505903, -0.3290917083219452, 0.39543051908884475, 0.22869334702799493, -0.13711944491265166, -0.22775105056834766, -0.34516441412033966, 0.1919905232282375, -0.3150463645005551, -0.1587960071700334, -0.26050924489156013, -0.44946485570430383, -0.3176679643942554, -0.1930867957858023, 0.1688240054614083, -0.11055325501716193, -0.15107770085665928, 0.0799599522767263, 0.11946763486606914, -0.24409721912614746, -0.37671637483291204, -0.1902080590654208, -0.15715510756322032, -0.11307569672811127, 0.045669196565375686, 0.15750750376246636, 0.0869752028140319, -0.20743872370938574, 0.05008812025243807, 0.07349676801498493, -0.41026835899544817, 0.04068601837076509, 0.3117088605164987, 0.28532034831720965, 0.1588305047618467, -0.12177606557798688, 0.242757805376363, 0.08635542553975822, -0.08481054708348487, 0.1498293695667864, -0.04703701482322527, 0.4816705840983016, -0.3286523493894209, 0.12318998381553992, -0.36796486354925695, -0.05422391982223825], [5.353535353535354, -0.0934077802456894, 0.06656569762305217, 0.11674136724968535, -0.21612441901055496, 0.1669709073483991, -0.3696021602479896, 0.3841235108421929, 0.19085587487949032, -0.18106999408479985, -0.190952396164497, -0.315464438067473, 0.1931768715468693, -0.27547422214664763, -0.17326754997921934, -0.23562064434232258, -0.4065573423613049, -0.2740980588643533, -0.22735519940103238, 0.13564195084134403, -0.08640540868336714, -0.15139016616049145, 0.09080316171629443, 0.0701634719849066, -0.2917371280700722, -0.3345075852456752, -0.18623639365776878, -0.11263813596933213, -0.09767640342353372, 0.06174456274067343, 0.1984849570652287, 0.12836151595563014, -0.2297308707980191, 0.06073336810291393, 0.06434370545062203, -0.39511825945756507, 0.027943332064218118, 0.3164230882634588, 0.2363713950904028, 0.20336038916784702, -0.08255718375900839, 0.19851865994060866, 0.04335762708200372, -0.06752074262546355, 0.10586413841101747, -0.03470837323771606, 0.4657993159192571, -0.31938635613679417, 0.17003471835972248, -0.3296776801596955, -0.09727310442439216], [5.454545454545454, -0.10792821907995942, 0.06525484585996452, 0.1517020998255835, -0.25383964382017804, 0.18737445152622104, -0.3531044650647644, 0.3960820317695765, 0.20458830568996336, -0.20528343099983262, -0.1472976024800385, -0.354682130550492, 0.2021975585225391, -0.31743153220763715, -0.20849875124156467, -0.26565708892414625, -0.38757250559286094, -0.2843767673221486, -0.23396313745026964, 0.16938078416742383, -0.07919279349439919, -0.19963272366914273, 0.04844420232282038, 0.036702424452052775, -0.30269233084532643, -0.30092828254472903, -0.19976123128037054, -0.15561570864166202, -0.14721001058265112, 0.09258464783315581, 0.218303533521925, 0.10916282807003258, -0.20168507738449792, 0.1032922498916089, 0.10055261381645719, -0.4093748645529118, 0.013685568179395513, 0.3001499687663603, 0.2604693658186154, 0.19013849716088807, -0.10730277549651254, 0.24659172823503006, 0.0912973978990809, -0.10134224417723672, 0.05960293674474674, -0.03281929423984111, 0.49400363853023804, -0.31724429762138684, 0.18022046499185798, -0.285299069620926, -0.0718776022409289], [5.555555555555555, -0.12390919754289484, 0.04621382763663498, 0.12714875337502896, -0.2818183920368142, 0.23347241682400938, -0.3674171856596453, 0.4009406623668866, 0.1604174803818015, -0.23237729769799625, -0.18288155648687643, -0.3299306624043965, 0.216743829658099, -0.2700306713526488, -0.18927566198736953, -0.23807989016512665, -0.40566363198704625, -0.2497319010465367, -0.20384839633879964, 0.14482466797547644, -0.09691415942304561, -0.1997677530275781, 0.08319594481750835, 0.031827634156295914, -0.2926912837413136, -0.30450241364041775, -0.21552155978748824, -0.14975420517026364, -0.16285154000606764, 0.0740554679145974, 0.2032602757384318, 0.1340128296045789, -0.1798984125069169, 0.13159254045254015, 0.0516331781396025, -0.4592730404000028, 0.03814562170929136, 0.2646133054292599, 0.26415630334627516, 0.22490751786275923, -0.11559408709602942, 0.2810323330662178, 0.11627985391971413, -0.06699463327921364, 0.09729352830270085, -0.017109904076987523, 0.465312631011988, -0.32041902238320463, 0.22830922504294596, -0.3242795538261388, -0.04965877860596435], [5.656565656565657, -0.15610109859231436, 0.05395796491941972, 0.16490430760370606, -0.2489161166667319, 0.2546875116142433, -0.34118809363341174, 0.39733006356876804, 0.11517989050454319, -0.19996892058829813, -0.2051808374667981, -0.2832398050035778, 0.21658470891080597, -0.23992260467957632, -0.16074644666810112, -0.2793084467966598, -0.40648976355035, -0.2347755786948414, -0.15749441358589172, 0.13294864366139042, -0.14368147177323212, -0.21836581248098794, 0.05655665288518125, 0.06673043004418219, -0.27296222206649146, -0.33842836256968545, -0.20188776325287222, -0.15699718700544224, -0.1525809694308667, 0.02810336718292729, 0.22805169350139975, 0.15197307617414715, -0.1533284774172503, 0.17305562974596783, 0.0358706081180102, -0.44095054978047005, 0.01507748735536876, 0.25517322634848116, 0.24375716117044155, 0.17784600304228207, -0.16325798477243125, 0.3199962779140417, 0.07509983155583637, -0.08868868830577926, 0.07301716762343305, 0.006021554145227995, 0.4502847919942133, -0.3460382930536321, 0.24964512822753493, -0.3630110084450721, -0.06798599933224178], [5.757575757575758, -0.18233167772990932, 0.04812874687629401, 0.15841732661292862, -0.27036693389672795, 0.27099564384631675, -0.29668752451830943, 0.4299745473919036, 0.1163743464249364, -0.22978347193311086, -0.24264864374126932, -0.31752415425914876, 0.20189762317762686, -0.23186033070265927, -0.1690326481873895, -0.23586583742762338, -0.42125094189377627, -0.22847411479988514, -0.1649985615648872, 0.15051869667681791, -0.16195582433866024, -0.1886816520001882, 0.00849539276291552, 0.08144789700974314, -0.26229886810298225, -0.3392246301654008, -0.16836513560996139, -0.13848567058426875, -0.1353526401980224, -0.02081151450062703, 0.21319804117925759, 0.11798657863579305, -0.12356225830168668, 0.20639031838561012, -0.009776825557864001, -0.4856202017708769, 0.03666387643109742, 0.2291504199784939, 0.22036102298601762, 0.21080356677161718, -0.11808559198005258, 0.2934248249549176, 0.07687450012554786, -0.04396051948772585, 0.10521083382630925, 0.05440653456803332, 0.4921684882674693, -0.3026543533728661, 0.25787021428400764, -0.37425370151550374, -0.11291826140134562], [5.858585858585858, -0.22784544948383179, 0.034096557136347634, 0.18136676100937943, -0.2422605256336188, 0.23436314006877318, -0.3243133042331695, 0.42007433013442097, 0.09630584551341134, -0.19167423937024064, -0.20417656492551783, -0.2802345690829376, 0.1906986032003014, -0.18329482863418717, -0.1866978702105673, -0.2670112938111814, -0.3858543171200672, -0.19895615964093244, -0.1790878516436601, 0.16565998562987014, -0.11312279681350965, -0.15716679266409217, 0.022588779312447772, 0.03552373743331796, -0.26969265112132357, -0.3117844088097089, -0.20218687878519315, -0.11802586420179968, -0.0999966893828837, -0.04679816066155317, 0.21842816824488345, 0.15229223097623226, -0.12308634428742488, 0.20887853411776236, 0.0305561465168983, -0.4486515915640363, -0.0025046919685220784, 0.2231418026085444, 0.22745691734431192, 0.23710761886144688, -0.12285655544712135, 0.3213470836378038, 0.0956683033760804, -0.059827893975486934, 0.14975768730057648, 0.038819075428928214, 0.4777057070302599, -0.31553916265908977, 0.2655292124528163, -0.3718896639332044, -0.1043078990452232], [5.959595959595959, -0.22730230652025285, 0.016229750337228992, 0.17263083776325885, -0.24179394437395088, 0.202397656991608, -0.3685879823077485, 0.4320246581112609, 0.08094945904746832, -0.22023778880166467, -0.1715027878790708, -0.2587903857315135, 0.22107183376262665, -0.20341219058436866, -0.14508716549766984, -0.29646911633990547, -0.4105259528284005, -0.21879340011692316, -0.15825461789743525, 0.13618256911647397, -0.08393739454581911, -0.18091435893914753, 0.03913563240660104, 0.054618725072293005, -0.2890991715123207, -0.29398880500286445, -0.2211194661894031, -0.1002614063337851, -0.07874364493772326, -0.011262462162918298, 0.19898733504716368, 0.16690149384146907, -0.14815954676650955, 0.2316333354305601, 0.06791597573983761, -0.4058637317401269, -0.030157103128978582, 0.21988427457860166, 0.26008978029969787, 0.24242943259000588, -0.09704403816659676, 0.34504171022717883, 0.05017030032402553, -0.01791884826337787, 0.19667222081362598, 0.07150021246808033, 0.5164328609087319, -0.27727398836473555, 0.2545696167072749, -0.37220283632215706, -0.07020785835683108], [6.0606060606060606, -0.23967706109051656, -0.012949525643168744, 0.1417144423443811, -0.2779490519962924, 0.16806924388383632, -0.3543077972844347, 0.4320955699446404, 0.09587120250783794, -0.26111303874437747, -0.12196689976979277, -0.2738579934235933, 0.2228665370858785, -0.17477105340043803, -0.11134589292703952, -0.2974098626724841, -0.43215036272926366, -0.24120106792006651, -0.15121270007262166, 0.15328998591126713, -0.1244310135362538, -0.17684301539604566, 0.04856628551565245, 0.07903553179040892, -0.24353180920213252, -0.34244257142081047, -0.20104288440523402, -0.07085048341074757, -0.048112828852406586, -0.006531216365979332, 0.18050102201976606, 0.1755086175117375, -0.14119374509233532, 0.21691436130599312, 0.0786749284449108, -0.3617538308474327, -0.00042758731193490856, 0.17557034093609325, 0.27757314205038985, 0.22031077824447454, -0.06671924983176764, 0.338329427047132, 0.07682513647777682, 0.029398777466455334, 0.17941974811398825, 0.026657401273233516, 0.5173006992108523, -0.3272251191219895, 0.2191810567110636, -0.36609181755264253, -0.052267916097646715], [6.161616161616162, -0.2303965209929279, -0.017823663236985306, 0.16231639433999734, -0.2501453967628946, 0.12711659201171938, -0.3954300864291494, 0.432184520360008, 0.1407600295186995, -0.2365324593920669, -0.09057993819069174, -0.30505019641788284, 0.23870624566093446, -0.13509478163168262, -0.10164987514513607, -0.3260942522962874, -0.46307308252095564, -0.23568692643473632, -0.18798923850749766, 0.11400412270126944, -0.0924088132916922, -0.22684155353913313, 0.04309980131569733, 0.0635171212461794, -0.2898523891030938, -0.38422818439714024, -0.16098776000503723, -0.09800362651582978, -0.036549533751477445, -0.018239378544886123, 0.22084985506345617, 0.12894312991975687, -0.11743632899032469, 0.22164348068927603, 0.07800099733347289, -0.329407274881568, -0.04321641859637596, 0.16153119623145845, 0.31640556107676365, 0.22363398133677007, -0.01859087829713097, 0.3379378724543321, 0.07111222822384806, 0.04275647550553288, 0.16149413168518278, 0.028002905219188235, 0.4985274363190384, -0.36950777404679813, 0.18858757466315662, -0.3682986981582199, -0.02958926341533142], [6.262626262626262, -0.21740233343417817, -0.018639372210579916, 0.13637967643298263, -0.20801221741081033, 0.17430320683622264, -0.378636244929284, 0.443074830741682, 0.14238421743648702, -0.23609845588680345, -0.12866536813103271, -0.2658823960645993, 0.1975264300349855, -0.13554343527965124, -0.07701910540025864, -0.2981833592632551, -0.458082973061993, -0.27928000013656284, -0.18943474692119472, 0.14573928372951683, -0.1261833132678242, -0.1959100467290977, 0.0005688333481782201, 0.0452376401295007, -0.3155938798301242, -0.38040694756297516, -0.19744739638616182, -0.07474033768727405, -0.07049828915430897, -0.05597873388541254, 0.17915072232477552, 0.10220643731448001, -0.09452807807671619, 0.1873883642219923, 0.1230914570912026, -0.28922590105965, -0.057883007487013506, 0.1312370535917159, 0.3475247959242972, 0.19406465366336292, -0.01700313327013992, 0.3626996444277666, 0.06809064230200344, 0.06666771163703494, 0.1489949876154089, 0.05775681853870064, 0.4797680806876024, -0.357143872629922, 0.14983052466257119, -0.3869258661368113, -0.006531966223612778], [6.363636363636363, -0.2531423019895498, 0.02126825926879121, 0.17151211911628217, -0.16371035420719118, 0.17528931986471263, -0.3679141064161712, 0.4926113548412719, 0.16373856151250935, -0.22747825155846668, -0.08551168977960408, -0.28135009815899237, 0.19476333423258363, -0.0989412402642397, -0.06396639153617212, -0.2864201702125539, -0.45588673221596165, -0.27962875038953916, -0.23397393427474983, 0.16561335156599638, -0.11625588868756143, -0.2413592427497541, -0.009321163835014381, 0.022564848214296614, -0.3039487544311844, -0.3949997619419334, -0.14983680887637826, -0.08668340358150999, -0.056745748982749394, -0.08994046699800576, 0.224634546542474, 0.08324829981067346, -0.1389750923536965, 0.203113312830485, 0.07807593207378916, -0.26005876179105913, -0.04642603205761103, 0.11736858112164908, 0.3571554015451788, 0.14701028055626522, -0.019906350168821224, 0.3404352135853268, 0.051278240416461465, 0.04953694309353059, 0.11576302202813049, 0.07154166711900746, 0.4457948000007498, -0.4001507447189515, 0.19602459098948113, -0.35438769798773173, 0.026860121100654038], [6.4646464646464645, -0.2097581720429079, 0.04420430537173533, 0.20392234804214085, -0.14326677448079683, 0.17037706749481782, -0.4159541244388869, 0.46740630676293576, 0.1723546863913908, -0.2410626402389789, -0.13481302050649338, -0.3108060068991558, 0.23486527719560366, -0.11485667627529988, -0.11250992666780466, -0.25318411791588125, -0.4909928385562071, -0.29191199360661363, -0.24137203301664337, 0.14941663957116008, -0.13511903371671669, -0.2657292510846351, 0.025932106575721172, 0.010928321029131344, -0.3017888750375932, -0.43091747476793363, -0.10782996020288944, -0.1366112227105426, -0.06718585104063939, -0.07194708233165659, 0.2145047125461651, 0.10746285028081544, -0.1327847412415711, 0.24657756082068122, 0.12070355233832158, -0.21871834495060916, -0.0298082220064786, 0.11656138114167269, 0.4049860137248158, 0.10829730377826527, -0.01209262661916452, 0.3309028032565096, 0.03032063053727964, -0.00014058449933871536, 0.07725038121033304, 0.09641408264471699, 0.45188982161108726, -0.401972559051221, 0.20014751572725023, -0.3173736968510872, 0.026319561176863675], [6.565656565656566, -0.16512018396199776, 0.07121328266370489, 0.2064435267035379, -0.12387512993320596, 0.1533471653445391, -0.42657479000311305, 0.49124964735213716, 0.16184827020493012, -0.23573724428486728, -0.13097339556124674, -0.3498663331203311, 0.22946500990770544, -0.09678712642714657, -0.14621402897654637, -0.23261129538193198, -0.47214238803797953, -0.2661617304870919, -0.25510249748606306, 0.14707608248409043, -0.13182695711171877, -0.28016880406792155, 0.0011950463725856723, -0.004777241254805015, -0.288429789665819, -0.4167061292881698, -0.1324535518342902, -0.13466833364411276, -0.05279667050481539, -0.11268530263414597, 0.20963555787152002, 0.1438522651345186, -0.12242397701247232, 0.2650505191106517, 0.16923096618088002, -0.2424132721905869, -0.052086632180591674, 0.12419470037631153, 0.36152734020730637, 0.08369130201179589, -0.004973889369612455, 0.29018030613996504, 0.002483109073609671, 0.032935113999467636, 0.08866947844316175, 0.131175779508932, 0.40580914033673343, -0.43258455064792517, 0.23574749895449623, -0.27227417672580423, 8.897692272758287e-05], [6.666666666666667, -0.1548905181889112, 0.05875720741990371, 0.19507760613415476, -0.11921994859645646, 0.15269836954948657, -0.4306240597345013, 0.5342540391701943, 0.17902992273394003, -0.2044527743742403, -0.102723241341503, -0.3308729829424136, 0.19391309550560532, -0.12313486868786853, -0.13723390327005333, -0.2055189210615059, -0.4310943556241511, -0.28624921519967644, -0.29779408322111584, 0.19523173840935987, -0.13515339202172932, -0.23486147702573515, -0.017571723121180452, -0.016493666976374496, -0.3029990081009856, -0.3798376595372337, -0.12218523441142407, -0.12831151561545126, -0.013837103504671815, -0.06579510872625938, 0.2422601435262911, 0.16361939437991146, -0.15233357646884266, 0.2971500256580739, 0.15874284352019677, -0.2183201296039642, -0.035974785622247984, 0.12447287192187259, 0.40095618561199164, 0.08998293889101097, -0.04648322679743678, 0.2603687975846981, -0.00826523811384978, 0.08054813685574364, 0.08564156921033378, 0.09032975013645919, 0.3847795116819147, -0.46074699193794355, 0.24315486650333717, -0.30973459973243156, -0.03952126211943563], [6.767676767676767, -0.1661138901562481, 0.043131160943442146, 0.20416568520764722, -0.13229822562266816, 0.11705846805754483, -0.4785104585784258, 0.5426952467397371, 0.15274698036161238, -0.24044544863280107, -0.06383631616871181, -0.3774394149439683, 0.15029371509688766, -0.10493850969953206, -0.18602709421012886, -0.20455416449914596, -0.43295851110391276, -0.33164495193591637, -0.2803617169786963, 0.15287788487697404, -0.09527221565473859, -0.20281127698242446, -0.021181566550555756, -0.013998788935466074, -0.3155729765218507, -0.3382954972100973, -0.10076542884155451, -0.15537632237405835, -0.024526344508023205, -0.11465833474456275, 0.21621727411953703, 0.16433270146554638, -0.13332369592823395, 0.29260270639132824, 0.20832419131101138, -0.1755720932350423, -0.016126577774528736, 0.13185362835399625, 0.41319944715632906, 0.04687321271521705, -0.06768295691538387, 0.24480877810589438, -0.04040970950042737, 0.09497286748449689, 0.0684890936135168, 0.10956992590912364, 0.42359978378601565, -0.4565387815058425, 0.22933138409154855, -0.3209968526134988, -0.07505951924494238], [6.8686868686868685, -0.17979508974531314, 0.05863468154337439, 0.1679180466984298, -0.08405146814996886, 0.08215049714159256, -0.49114136844392403, 0.5807599619476311, 0.18756789498511714, -0.2636829384208312, -0.08329875341155941, -0.379462306940878, 0.11990642396451609, -0.0776386156316429, -0.16453644908604576, -0.23477869950184385, -0.42543426788446137, -0.34564207618758747, -0.2490954100132381, 0.11745190293144253, -0.12349371348788375, -0.17272241641049502, -0.04270530190536859, 0.011330523199815527, -0.34271722471010424, -0.317831326670133, -0.14287034963507358, -0.18098799768700963, -0.022142410957975603, -0.0740730211091769, 0.2660460424203685, 0.20968097640350689, -0.10765771097305932, 0.31323149986674725, 0.17409850668491206, -0.18372410934881292, -0.020496702208701298, 0.1546958268425026, 0.41058207709398575, 0.09607634295734863, -0.026540598099789973, 0.2632386808609559, -0.0009681701489522229, 0.12714145545513178, 0.06541577992340351, 0.08165708009814307, 0.3812852872612159, -0.4326206713083107, 0.22606559354865127, -0.3609642733128504, -0.05630828204366215], [6.96969696969697, -0.20936056205844872, 0.07973848086442414, 0.19874508748759062, -0.1274905456072184, 0.11368435508758032, -0.48458465474631407, 0.5999658739281979, 0.16681521168616836, -0.23972808339504836, -0.06883100301800124, -0.3776316394419454, 0.16175921789592748, -0.08315287956457416, -0.17757699582196437, -0.18655151966421563, -0.41954323114773684, -0.34839552707796595, -0.27906901614003315, 0.10374490237207393, -0.15036791640472313, -0.221213502586518, -0.06217611571707486, -0.017454816722156406, -0.2947440247990833, -0.3098681803880624, -0.1682566988923519, -0.22918480613597236, -0.06794768350432431, -0.06466518282763792, 0.22077482689128722, 0.23409859276689815, -0.08058668476069666, 0.3307250268810488, 0.2054697945418179, -0.16197102473926675, -0.005717017243182762, 0.1820817939469413, 0.40294424481002616, 0.12089917509452096, 0.006215132652660632, 0.2423565001958352, -0.05087931149958453, 0.17043062369839557, 0.051598599382631026, 0.13073346646614242, 0.3335473286002759, -0.4042233423850002, 0.21836749637805725, -0.40126625948751815, -0.06896418233146288], [7.070707070707071, -0.2316840559188152, 0.041092238386291766, 0.24532766901203912, -0.08772271453299184, 0.08481254346721649, -0.5336971370481578, 0.5851077018686156, 0.12888084429113275, -0.26234847558387125, -0.1063390683531153, -0.37171318585400603, 0.1812476625442168, -0.12131832101073992, -0.2149264307344716, -0.2161214099599918, -0.3822881555504437, -0.34190672188122184, -0.32115228494370474, 0.13512531797869198, -0.12603062659791972, -0.19415728817776862, -0.07592485203919229, -0.0611145656927235, -0.33189030157931554, -0.26671726398488194, -0.13668262701326023, -0.2190340167532006, -0.05606565999468606, -0.033934896755040425, 0.21051271937514332, 0.22214638280528246, -0.04985966234624522, 0.35055519314815053, 0.21888089872360486, -0.17343748870512685, -0.008433075471702597, 0.21402705309346826, 0.4157125407587543, 0.13975169437773555, 0.04003954867846873, 0.2545825325857403, -0.08872891086671184, 0.17295747514662613, 0.06285669818665374, 0.14903842621739505, 0.29471827862207456, -0.3970859948777962, 0.2438085826008402, -0.4490095369546362, -0.03991882142504366], [7.171717171717171, -0.2570304677984602, 0.004395107323649269, 0.2733072494353326, -0.11132961562350477, 0.043466775702945666, -0.5674126024093241, 0.6171776469537905, 0.12199926375069728, -0.25266232914318043, -0.09548063831683949, -0.3260285288509944, 0.13430441224224976, -0.1642446708747724, -0.22288415389840863, -0.24289272337151951, -0.43091668376030173, -0.3016617092509437, -0.3511712259805401, 0.12096850763138842, -0.10970650587980087, -0.16765259744388689, -0.0760172606342475, -0.09108469471922473, -0.3378339624135194, -0.24827311876203323, -0.10354817586375584, -0.2447956429504359, -0.036707990980704056, -0.012607244858174983, 0.25338350497835466, 0.27183882635158574, -0.03025317927952912, 0.3825771676039972, 0.20826963295369522, -0.1999722155947655, -0.017841126339853138, 0.2573016080503267, 0.38744782107818426, 0.12870806719915623, 0.03882799012280602, 0.21093761451311582, -0.11133327160881852, 0.14890813859950727, 0.06643135191485589, 0.10075769320044595, 0.34438877178347943, -0.39324957733419275, 0.2653017596760839, -0.48935434176718745, -0.049589641251788316], [7.2727272727272725, -0.28966966762443974, -9.869157383355504e-07, 0.24724075764491454, -0.10388203142117092, 0.03219251745606739, -0.527599428712034, 0.590886143072921, 0.09919441982372845, -0.26880008233814495, -0.1265307943767548, -0.2987348615711478, 0.09109584748723956, -0.14419934060322254, -0.19700290752755523, -0.23104747236401196, -0.479252750750703, -0.3125344737926895, -0.36434919307040914, 0.07599871463648235, -0.10389202348342243, -0.17137137527354485, -0.07622427111142943, -0.06503004725147438, -0.3193672841412798, -0.216215049840868, -0.1164873089318473, -0.2007994835624765, -0.026157921377998897, 0.009612561545179532, 0.2642426680377768, 0.27998471078408116, -0.07907204055095046, 0.4262353666059004, 0.25591037291969465, -0.20211316277074035, -0.016551616534145303, 0.26820408095129794, 0.36078789146393075, 0.17232461569960322, -0.0028218062394992707, 0.22216863766322392, -0.0699131308875118, 0.16634510946378073, 0.06810457225452343, 0.09153286068663505, 0.3414456482016705, -0.34722884591853037, 0.3121004876761477, -0.49139831254607885, -0.0012399495029424348], [7.373737373737374, -0.2430086981757074, -0.03402736389988732, 0.2839667989557576, -0.10259540461179215, 0.07153285885827904, -0.5420560968539162, 0.6330555099211652, 0.07656704743192579, -0.31163970287664394, -0.13262421243877565, -0.2764046117186733, 0.0847129522015115, -0.14266027878844528, -0.21230718532340756, -0.23709571727608902, -0.44243340936848763, -0.28296166098399755, -0.3636704830581366, 0.11576699200105811, -0.12838554803063876, -0.18196876532455739, -0.06665259018453237, -0.09517361751622352, -0.31511453161982517, -0.1786381922283446, -0.10142452560715888, -0.1916680284509823, 0.018189702677695277, 0.055886007930861986, 0.2554112425990049, 0.2856616764731803, -0.06977346626925442, 0.40017643414948445, 0.2462466760454758, -0.22121066732732464, -0.06415839275467533, 0.3125077575759886, 0.40029384348642894, 0.1785230037291675, 0.009310289538694838, 0.2585664504919341, -0.07647921386276019, 0.16596035235496412, 0.11253264543710907, 0.06851106234878357, 0.39047415239844213, -0.3464959237370604, 0.2636725713713565, -0.4820125092318126, 0.017599330863992475], [7.474747474747475, -0.19730743814042756, 0.012136826477577259, 0.31477830024512765, -0.09714772380459874, 0.06439718865256529, -0.5610807453371689, 0.6749404003765737, 0.09078730436803839, -0.3117800153069585, -0.08558295213663801, -0.23857311930706077, 0.09562251037454605, -0.181172692161109, -0.25859202307798035, -0.2743369943107428, -0.433204407709661, -0.24848278890348702, -0.39961195827166696, 0.08310064960783514, -0.17246967161877677, -0.14320560192285733, -0.09445162266131057, -0.08395097840978809, -0.32029227413913525, -0.1840559883998641, -0.08905720642287941, -0.16138303386462857, 0.030227681856311698, 0.02477950867259752, 0.25705125800688033, 0.333242266668444, -0.04501383405176771, 0.42000970164633883, 0.28270271617591414, -0.21395010201614273, -0.10506208342981371, 0.30013322484227783, 0.41031043533186556, 0.14294126769076904, 0.03617782556835228, 0.2502535715104841, -0.043410491469375374, 0.1537472548395046, 0.11238015655986404, 0.06573595500222557, 0.4140925262301902, -0.33482229132454855, 0.25342389839959434, -0.4785482232566313, -0.020801086585174575], [7.575757575757575, -0.18751006970753548, 0.04589840096375824, 0.2711464126671745, -0.08243099062175882, 0.09102758987058644, -0.5528650775108584, 0.6878934715601482, 0.08577853721783944, -0.2903308843458877, -0.1287736766131806, -0.19199325516556306, 0.11324753755257196, -0.2069737018405663, -0.2845369444462825, -0.3117526807204478, -0.4254983493598057, -0.2240252691238458, -0.44453395366463344, 0.044043721050524585, -0.20468883075738595, -0.171560364284088, -0.12091651062369778, -0.09207181990401393, -0.2813361037508388, -0.1914793651559059, -0.061904990828870556, -0.1211950593568362, 0.012303967891984683, 0.05659363330414652, 0.30257224223148915, 0.3685786681949475, -0.07300875754696103, 0.40870271846910056, 0.2724598148916579, -0.2523549391942691, -0.14093981200330263, 0.29792805532445576, 0.37109028486329515, 0.16743058381771095, 0.038159720899043244, 0.28220081154119087, -0.037420589774650695, 0.10993293517304109, 0.09804598363947697, 0.11388680015909913, 0.4510435533405622, -0.35500604936237024, 0.28643825358969827, -0.5242205975342311, 0.027128982358210412], [7.6767676767676765, -0.16437999440154322, 0.047914469667550565, 0.24426924307205478, -0.11388357471631078, 0.14055413007232714, -0.5506486153180269, 0.6891157832635593, 0.12662701450475503, -0.24126745806857153, -0.15825639038706524, -0.2080231849371052, 0.14696645180648799, -0.21035868073433267, -0.30020580957128506, -0.33573210483315136, -0.4726299286927315, -0.2407720001614303, -0.46989794556731906, 0.02379802721995839, -0.19013966803578972, -0.16855077280791464, -0.1123234972519573, -0.05257196878885602, -0.2521540897216764, -0.18966984270045556, -0.06124327676782041, -0.16319343205046874, 0.019984811435188935, 0.08319253683529843, 0.34008497968818796, 0.33202761371878164, -0.12091584303652891, 0.3719833954196821, 0.2566403992521477, -0.21103036331790223, -0.1690097707678583, 0.3198403946838681, 0.3230801494431094, 0.1434254794159225, 0.033518244015199476, 0.24932286816204102, -0.03506320998181409, 0.06800676936682307, 0.05764021593235995, 0.0903680095199577, 0.43105459243204486, -0.3544081470433134, 0.32610288130878884, -0.5364568912780611, 0.02405165699148814], [7.777777777777778, -0.1803414721177996, 0.019741695440366004, 0.2532377879424075, -0.13668575428540863, 0.0925604151618383, -0.5124030383828544, 0.6691009353935471, 0.1541667313108256, -0.26065103664912737, -0.15749919629296366, -0.18533466330626774, 0.12082907004847074, -0.219740690387275, -0.32954048717038553, -0.29471336084687066, -0.42819154452584557, -0.2644757860928701, -0.4556809081306907, -0.01448531449480605, -0.1520968406237253, -0.13122884920349942, -0.14619244868208647, -0.1008823675070751, -0.22376998079705473, -0.14325327234101132, -0.08251924186898857, -0.19027802110453373, -0.003867734786547637, 0.12252688803118097, 0.34185820155940605, 0.31894611223746433, -0.15900115193563077, 0.3329157926963747, 0.21438620754659388, -0.2054386285593068, -0.17086702795844805, 0.3628722923922322, 0.35064245316914155, 0.14633037605236787, 0.03804142300539573, 0.22921666378730132, -0.048879938072588204, 0.056289786221787715, 0.045048226167271464, 0.10872164286753863, 0.42491916405969216, -0.35092909889710294, 0.3701142739199811, -0.5382896687323424, -0.006582904950639311], [7.878787878787879, -0.22113591178007574, -0.016766432306394116, 0.2169864827401849, -0.17184188851113028, 0.05338023802874751, -0.5351685918988536, 0.6642071453023964, 0.13807798330737647, -0.2674691372797345, -0.19344918453115267, -0.17271078827618025, 0.09574256659509031, -0.2485210867572603, -0.366043051994214, -0.25514066164333316, -0.42137808941396104, -0.24080919204433737, -0.44567280748202154, -0.011869597239594791, -0.1458008936105506, -0.168543264850182, -0.14940068189395533, -0.1488202107638365, -0.2373360560045333, -0.17498836321662603, -0.11882207965376196, -0.18009438741950295, -0.017852877610038308, 0.1434493031857701, 0.306354577052664, 0.27363134169786907, -0.12185884767716612, 0.33730058234262517, 0.19592101342587603, -0.24786672767003012, -0.1535600794386878, 0.3874001704464011, 0.36528950053486126, 0.16976790799932184, 0.03625495422009157, 0.21961037408690076, -0.09608251202750276, 0.009046305464435585, 0.006975976880371222, 0.10937042423729847, 0.43884645477597634, -0.31645344705400436, 0.38574244398836555, -0.5660037551450238, -0.006519121871249188], [7.979797979797979, -0.22478610988636097, 0.03114060224199277, 0.23483055317733348, -0.21881147145168978, 0.07285450517810951, -0.555186586220565, 0.6859215036371189, 0.1584520483435017, -0.2626507812931464, -0.1500753489584878, -0.1417729845006265, 0.05097728412725092, -0.26070231136944966, -0.3565677789544724, -0.22387891214417843, -0.3827205284594137, -0.21810389172079925, -0.41765307409574765, -0.010408988552296109, -0.09660118049818056, -0.16419789112923733, -0.1879455232664991, -0.10779525235010694, -0.24477339692302252, -0.13550927345003613, -0.13908638642977147, -0.16337902007474114, -0.020103530059919425, 0.09924610168191908, 0.26583312761991346, 0.2654604874270064, -0.12054972145800513, 0.35980173504186136, 0.14870059530212812, -0.2712854735064967, -0.17160822827878797, 0.3580221617124241, 0.3475325797794228, 0.21121712339364088, 0.07429925001628623, 0.21093239454757684, -0.08079956707697053, 0.010710740541508175, 0.05192654795874195, 0.10429858465850181, 0.4023573304744617, -0.3590586005757868, 0.3436962648092367, -0.5735660727572863, -0.037742297260020555], [8.080808080808081, -0.22391622056254157, 0.051844951810907085, 0.2840496221288582, -0.17488591303647585, 0.11192091022376464, -0.5743479155410843, 0.6648925806088618, 0.13236391048869597, -0.25342289007764407, -0.13942080578781296, -0.10862508213531524, 0.08570132456462407, -0.24403245820388533, -0.3944591926552041, -0.2107033120289819, -0.35735042621587976, -0.22894507860562108, -0.39782735070523245, 0.009937268853652967, -0.07874868195446089, -0.13904674993887706, -0.19630894958700468, -0.07825546111539106, -0.2931913375731666, -0.10318657442961468, -0.17683649101387555, -0.16356532100368257, -0.048032380717346626, 0.08172003893861052, 0.21677640447306495, 0.22884933748874897, -0.11642576423579162, 0.32971773742064875, 0.15670286457508234, -0.2453662967987298, -0.16920591735974477, 0.3329298745635124, 0.2983601081227922, 0.21928419523128756, 0.07677457419359263, 0.2400448281185705, -0.031720772749252314, 0.05226647403755406, 0.03692363272738344, 0.105999221310802, 0.3613221675213528, -0.39616414337944633, 0.35189088909891414, -0.5997070661867672, -0.05807107290570669], [8.181818181818182, -0.2650702032622525, 0.0878425075054734, 0.26262482061041537, -0.19021050001885545, 0.11116854260142293, -0.6142474883704637, 0.6357769960818282, 0.1028800180686757, -0.2926294518543124, -0.14326765287092608, -0.06632784211176995, 0.05985354912012958, -0.2757086904752112, -0.36057760173859377, -0.20080967892819643, -0.3435506807463242, -0.22425685818058286, -0.44600597732284514, 0.0351732121140675, -0.05221379791560937, -0.16241515678410126, -0.15207069132180517, -0.06248073629164706, -0.318747305195024, -0.11394803122149937, -0.20132538157395774, -0.1862280313022088, -0.06118392637804483, 0.12146317560467793, 0.2553568183019599, 0.19834128751160712, -0.14604486325226934, 0.3244825811416081, 0.13259176188912092, -0.20689670971000024, -0.15045326353718413, 0.2861150537148089, 0.3459386450990858, 0.23126101669814886, 0.037724663303220336, 0.256225584214561, -0.0006194463995672569, 0.0042644127330459525, 0.05729420355578714, 0.07589980158118606, 0.38074961742623425, -0.39619162602789787, 0.37746126979553696, -0.6265050857877229, -0.06125755332793632], [8.282828282828282, -0.26226668093044775, 0.0765597702883373, 0.2887160965663004, -0.2292540395882945, 0.06819534164097242, -0.6347453185125702, 0.6174306879567721, 0.12127687815247103, -0.2704491494759596, -0.11311743577997123, -0.03491739478678656, 0.017394391071771098, -0.27324410330463067, -0.3593163591611214, -0.19088099147773419, -0.2950150823245169, -0.22746704608943863, -0.4154576493383063, 0.052501710512773206, -0.07589931494348476, -0.1457404988789243, -0.19956152090466078, -0.0808643432937859, -0.3216585202412714, -0.15731137811707366, -0.19988960346882653, -0.17310441350914685, -0.054658199843721104, 0.13843854934712316, 0.231650950858381, 0.18318255630992242, -0.13782506754617468, 0.3497662846926524, 0.17031764761332463, -0.17775612665259843, -0.13851210612383363, 0.3288097092108815, 0.3230772908515982, 0.20816465253384334, 0.027885388351047563, 0.2561261694758283, -0.024182001337900227, 0.018004541076178014, 0.06369184098355277, 0.05331387091382117, 0.34238309479289736, -0.4190007333300067, 0.3836051528048284, -0.6592438972380499, -0.04706822134727782], [8.383838383838384, -0.21305087727939492, 0.051643172271509774, 0.24336881333291424, -0.2414213400221475, 0.02703907807596031, -0.6118548393084077, 0.624754149641956, 0.11294640704912723, -0.291667656093364, -0.09324670457232595, -0.056411026270824303, 0.059051086008193414, -0.24962653689026543, -0.3334538454551723, -0.19259555756193197, -0.3259218042751811, -0.23944063696872406, -0.42123333643325167, 0.03359108062366428, -0.04785041611594975, -0.1746900255537291, -0.15598969178191463, -0.04876974921956342, -0.3345318185744325, -0.1786740661691629, -0.20015803751413744, -0.13099640773519988, -0.01056477075248885, 0.15040392374033354, 0.22367824324111904, 0.15218216937022888, -0.18699777919765062, 0.39140182954626074, 0.13419245335923177, -0.15475089702799175, -0.16677180399437636, 0.37822398945521674, 0.3094780289946566, 0.18088175749835392, 0.03326206233961279, 0.24076551547836839, -0.047056686184416274, 0.0496217481418443, 0.045599836019360296, 0.04681630246654929, 0.3267501189429494, -0.4071675687773048, 0.4319493650770804, -0.6740054381823605, -0.021544967109633117], [8.484848484848484, -0.22354728410357197, 0.03158697416598, 0.22662240398513492, -0.25301339411800605, -0.012340106070990758, -0.6276669500368832, 0.6210067723721455, 0.08246755179563678, -0.2706481070003797, -0.06879097028042647, -0.045824451945211064, 0.056389598938223824, -0.22270847145988726, -0.3450066666906751, -0.2338685768418067, -0.36318190192690347, -0.23901000162197142, -0.416574440924388, 0.0013656689621114118, -0.07829012723684534, -0.19644394938415555, -0.1246690511299792, -0.08104624017287226, -0.30732630790860377, -0.14948894287180017, -0.2413896675541, -0.1279583834313585, -0.021348027341014698, 0.17192465938805285, 0.23352864707182916, 0.10508437779152807, -0.20512642759045385, 0.4135772250429954, 0.08430947119116627, -0.19790473310553552, -0.1986804102181854, 0.32879186042474173, 0.27541893386144994, 0.16884790021641452, 0.07015889655724414, 0.2883458364520619, -0.040447261527679725, 0.03436629293205152, 0.06498402891408268, 0.056953848282879964, 0.3197193188538704, -0.39593653256785166, 0.48083106160066635, -0.6819634662956767, -0.03149780668526557], [8.585858585858587, -0.23998763993171515, 0.06727652700648157, 0.27107768308784064, -0.23647102532605993, -0.04221421824631233, -0.6490601344850435, 0.621268628788417, 0.07150050932346079, -0.29415637300154224, -0.08627459242226045, -0.0697247284735131, 0.014808206157921923, -0.2602784064001306, -0.3893795259411791, -0.19725025190236767, -0.345333303935027, -0.2321292161033467, -0.4020716309070712, 0.012745823227034905, -0.055685985761563445, -0.21178973577632615, -0.16120947623536686, -0.06207846300456865, -0.3513885181663078, -0.17405823812159923, -0.22526614765389366, -0.14835240124352198, -0.003078213400715745, 0.20867202285841113, 0.2278167027684981, 0.11034564846490019, -0.160483056752237, 0.4204863720187441, 0.1157616308923677, -0.15791500257887395, -0.1505574673706082, 0.29636491708769136, 0.24014547751533907, 0.1863176212146087, 0.1040300020654413, 0.3366225068272833, -0.03389417387933884, 0.025471679915703666, 0.07795816209006286, 0.07917499124773873, 0.3693584752270092, -0.363907855383201, 0.43219675325668017, -0.6464183065331132, -0.08050371505571888], [8.686868686868687, -0.20944258619878717, 0.06457492606330367, 0.2847293872133185, -0.26202193239544397, -0.004477817713248254, -0.6034253738743239, 0.6199927831626361, 0.03135285163917106, -0.3112271952810167, -0.11842951370633398, -0.03826012903644112, 0.0011733727998849645, -0.3052749618428011, -0.4296284761373161, -0.17958846934057096, -0.3322886015153816, -0.21400728835138422, -0.3947797768122063, -0.015208274555299762, -0.04795851830488972, -0.17841709250160395, -0.170298565175639, -0.06985654303280153, -0.31719657060553397, -0.16861469564788314, -0.24391212714315938, -0.11797324687084845, 0.0080892636162193, 0.18417326482020496, 0.1966283138606106, 0.15379003509964184, -0.12444108543129831, 0.38487627155354903, 0.16333635770257096, -0.11568026869555366, -0.12892593571013106, 0.2991376152361943, 0.2629967486163432, 0.22700891804458903, 0.11973918293501844, 0.3575865828770683, -0.01983410071862217, -0.01609517537894452, 0.08354313794172354, 0.06930849955771184, 0.4188216381002193, -0.3595681919642873, 0.44223106585159483, -0.6222862583112448, -0.1109625335919365], [8.787878787878787, -0.1840076867405518, 0.0809026307649165, 0.2949142478265077, -0.24587383501807547, 0.03984443250694461, -0.5534774587610946, 0.6479155101274003, 0.013607289627829904, -0.34583326696273076, -0.16699436344377785, -0.04181338465061538, 0.009228655123810194, -0.2664473078808817, -0.43644970537105005, -0.17394526609609984, -0.32633369318764366, -0.22016747520439517, -0.4323793778484645, -0.040769781962236164, 0.001236989910320542, -0.1920316788857372, -0.14971022384790333, -0.06822480319479657, -0.3356883183526016, -0.17543735678893665, -0.20286038896065658, -0.07861912005692057, -0.03364472017111712, 0.14843127117853097, 0.1873632223073978, 0.19391951068847968, -0.16010093194946573, 0.34041930754079586, 0.1873875677351136, -0.1289443268672996, -0.15356411830290398, 0.2508240839872388, 0.2963158196948197, 0.19930486930107388, 0.08174407734054351, 0.3310301427446353, -0.04984091800019852, -0.010898745283904006, 0.10090477519295091, 0.028672346637224018, 0.4173126759817511, -0.3854285912391035, 0.42969612062016216, -0.5948776834847582, -0.06558866561039886], [8.88888888888889, -0.20270104258170082, 0.11147549150859501, 0.33773271597287235, -0.28602454663888927, 0.003408046304976549, -0.569742266621766, 0.6369290991643698, 0.05255510319542715, -0.3652596392108437, -0.20628939071570185, -0.06448510106951438, -0.023342273402007577, -0.2949769054831552, -0.4070611790932388, -0.20640099406281393, -0.3029123908202307, -0.24992758498765155, -0.45920309811421206, -0.016239871040141685, 0.030375150411636055, -0.2341617226488746, -0.14262984887495045, -0.025268371973925403, -0.29656337266550326, -0.1470366933072848, -0.15938624648883207, -0.12216263012900669, -0.02280514818602178, 0.17669026924622622, 0.14461446872078507, 0.19279963156104624, -0.15556528720525373, 0.3238659504675963, 0.2359261109485546, -0.08087197746520433, -0.1391856895203182, 0.27694974576526, 0.26342111834851484, 0.1896598758429713, 0.12572340126081552, 0.3402497858011465, -0.057330363809801846, -0.031135280850457102, 0.06008083078073633, -0.003260558415073986, 0.44217026977784757, -0.3919697718395208, 0.42799676717480445, -0.5730368574533953, -0.0501543706684961], [8.98989898989899, -0.1892973742854733, 0.08677354197356742, 0.3059006570525337, -0.2779382718722041, 0.039280743573361296, -0.5722301109417723, 0.6637826169517874, 0.09678229469171815, -0.3385002823672228, -0.22898422062259796, -0.10103578777804503, -0.055675488565734225, -0.2686131094886128, -0.4476477733306997, -0.24025777029311135, -0.29418955488250914, -0.2465749674716353, -0.4555594211786605, -0.04953655165021751, 0.03730546384880591, -0.1985577645630469, -0.10513865292860262, -0.06959789527548586, -0.2869351333145114, -0.19271453827843335, -0.16409410197253987, -0.08115855597481807, 0.004494548912273973, 0.1629161844356501, 0.10466427224312064, 0.18859111945663687, -0.18878929967956773, 0.29618543278414744, 0.21071385138945034, -0.09814684584967455, -0.12658329540789645, 0.25337993698162237, 0.2943867546947167, 0.20508871824335229, 0.16012797974389692, 0.31621231590393384, -0.05857130248394482, -0.007502285584204356, 0.023851286397323007, -0.043368235945161815, 0.4232590523665034, -0.40467575599098954, 0.38653697424755307, -0.6164774208339491, -0.08574078655301362], [9.09090909090909, -0.18525691675540165, 0.0447308858705999, 0.2576829754551858, -0.317251721405349, 0.06499657181691688, -0.539265144942711, 0.6999294432279323, 0.1125293704361287, -0.3311154779672154, -0.21733204307863363, -0.13656440326151179, -0.07126271938626341, -0.2537290956985587, -0.4815547651698178, -0.2623516029312572, -0.30868022718055077, -0.2660681588346937, -0.4424369156957944, -0.0851560351908833, 0.050394565256342144, -0.1966356876783448, -0.12807574413389905, -0.11645312654201778, -0.25792347124879156, -0.19130896782350637, -0.17619283699642208, -0.09734335160706062, -0.03689156577594918, 0.2010194233705946, 0.07900210742397903, 0.1679338223853658, -0.1908078488129534, 0.3199311779774714, 0.1668776761255799, -0.05972945579277285, -0.15993386544379593, 0.22857309051215416, 0.2618891108608109, 0.19685558923376806, 0.11693884845276853, 0.29149290084836654, -0.043541359382088474, -0.05499478150894078, 0.0032140066081118336, -0.03690822419349908, 0.45654395212782434, -0.3561635069356081, 0.33909923432783856, -0.5853102554200194, -0.07123261812886496], [9.191919191919192, -0.2055775416674002, 0.06800694637217142, 0.22669019306860305, -0.3124262706589503, 0.08361373326248221, -0.5793246303145301, 0.6652744874050194, 0.08209224531631644, -0.28394445445777017, -0.17257412070222472, -0.16689402768990527, -0.08912276581094093, -0.23243323825811443, -0.4358349919107377, -0.24706329965579, -0.26090350813720836, -0.2698676117734273, -0.4747922300739987, -0.11144003732255117, 0.04829004930087883, -0.21180669692170367, -0.16837368535614788, -0.06974352509481212, -0.24646304671052002, -0.14859046186396507, -0.1662710923311241, -0.06509371978559164, -0.035196199617573115, 0.24284117331240235, 0.12250905222177086, 0.19283723124165333, -0.18621457884872833, 0.34260224037308734, 0.18409338992401142, -0.03473057606857275, -0.16789598769596076, 0.23977738236214474, 0.23006157744476866, 0.15589629390157808, 0.11637277909094194, 0.3384981975152857, -0.0798930443642355, -0.024873470661572455, -0.002180600071028979, -0.01815929281310093, 0.46421603008945667, -0.33136810871354627, 0.3631264154086274, -0.6324662989111081, -0.09917415578205542], [9.292929292929292, -0.24449875154915562, 0.11414669412253198, 0.22887737285106202, -0.31045109988782954, 0.11925307227850496, -0.578513166144587, 0.6768099373193371, 0.08466012139042013, -0.2647595176510816, -0.13192688381793224, -0.16711377622596635, -0.09602325985846043, -0.20103194445496717, -0.4019460934203169, -0.25876345878135526, -0.2743277850093867, -0.25180551739772006, -0.4708238202412613, -0.13597232218207086, 0.012369598138786672, -0.17554924224829055, -0.15314958617562127, -0.07958634538418999, -0.19927961632894015, -0.10273554260621517, -0.1410736585478768, -0.0156323840355668, -0.036299707626684156, 0.2836462654718852, 0.11836299839134296, 0.19123875271604876, -0.14933958663488078, 0.3403232231129655, 0.22401649780804103, -0.06428432143687007, -0.12266187302398979, 0.21267528296057442, 0.2146475925132582, 0.1233444157046164, 0.0793933964234422, 0.3032880550718518, -0.05124728041856241, -0.010711307524033946, -0.03852365601447039, -0.006718576845349539, 0.4190363504671138, -0.340119957612008, 0.37201077429535223, -0.5857042649554638, -0.1474192726435244], [9.393939393939394, -0.2632347217615813, 0.15952716753929824, 0.22845957144142906, -0.3308276881012538, 0.09234084756986113, -0.5451295095090382, 0.6781330925610084, 0.06574103179967611, -0.265623291854832, -0.08541748099657304, -0.19649476948306985, -0.11477385650748635, -0.1959945239961324, -0.36796499836327196, -0.2627717345616116, -0.23250784421625292, -0.2441514191717042, -0.465477453831802, -0.18576698187540458, -0.004719384827785136, -0.1682066217665603, -0.202629278778114, -0.0805547626592027, -0.17300067998826654, -0.0890130220055365, -0.10013524857229472, 0.033708026871468066, -0.021164107925932353, 0.3253417602511104, 0.16271146255380523, 0.23686121171210858, -0.17703286438455035, 0.38296829489099876, 0.24570585742456014, -0.07999689293321395, -0.07672601648611932, 0.2250544666343242, 0.25220375119504046, 0.1175569031541869, 0.08319640472387801, 0.32938570365928815, -0.09056428276583806, -0.02517683481291312, -0.07623574619161991, 0.03250098831664836, 0.4153463877223243, -0.3428620832794926, 0.3553073105686263, -0.598319722641292, -0.18189265849452035], [9.494949494949495, -0.2675368087566547, 0.1585770727276882, 0.2585086919983443, -0.33525478300144396, 0.09427464549100834, -0.5181172101676889, 0.7270596564531853, 0.07127587123281397, -0.2737279105450619, -0.10165537363245317, -0.16975782218901975, -0.117496305621984, -0.23809442742876172, -0.407669122336044, -0.3010640982281844, -0.22796558548330448, -0.22899494163440623, -0.48537219106604823, -0.13920295782525954, 0.022842241325394242, -0.12142688597441234, -0.23754273966128125, -0.03758516146409201, -0.16563897972543107, -0.05797049399387068, -0.08804779876566204, 0.08262926651533947, -0.013831191168528857, 0.2820630711648402, 0.1379919155049965, 0.27746207218557406, -0.19861656017768514, 0.40694069585051895, 0.21679536177723888, -0.05844505467628992, -0.10497504466606641, 0.18679858484512177, 0.260113010420199, 0.16131169014312313, 0.09065317247123418, 0.35022826056056416, -0.1131902604818374, 0.01405294454324809, -0.06311444197383427, 0.040493918340294636, 0.381455516811743, -0.3608579971462246, 0.3629390122957747, -0.5656118139458206, -0.13414609737484456], [9.595959595959595, -0.251642801734035, 0.1717962791709637, 0.2944523231428354, -0.3813881309884873, 0.07860799000865287, -0.48651717519219134, 0.6853421852515356, 0.07482885196958013, -0.22844006833935673, -0.08601506486553469, -0.19409466705533368, -0.11325840863497558, -0.25120906230103, -0.3891050257461818, -0.2690142794934904, -0.24279709027898896, -0.18734691748221685, -0.4527054851513038, -0.09028352983277882, 0.036145341599936, -0.11447285122362286, -0.2451751493704397, -0.021238661542295954, -0.17703412444250177, -0.08796152764687895, -0.10765334035345656, 0.13014404261835708, -0.04661188506670976, 0.26345558338904357, 0.10855907826385866, 0.23697392666478728, -0.15448469414293142, 0.36312241302427684, 0.2216303303382828, -0.008722112518008654, -0.15425484893308647, 0.2041399670588077, 0.24914452257746286, 0.17808212458932166, 0.04848524920869128, 0.3099073926303532, -0.1339141464407951, -0.018025543987481865, -0.07360058199561638, 0.043586051271608445, 0.40558719347727573, -0.37451497731863137, 0.3251002859262431, -0.5312590569395645, -0.16043685817451894], [9.696969696969697, -0.2762170499522632, 0.19509578115476295, 0.26574792636686995, -0.3714878284996372, 0.0944852829445211, -0.5313621775506463, 0.7064891778731515, 0.07134014485941928, -0.2640178161690206, -0.10686948676624208, -0.2178317968483108, -0.06679886627575096, -0.29463932408546256, -0.4293197231657592, -0.31635885600893643, -0.20572410841046296, -0.21675780521183957, -0.4070637292533401, -0.0680844476916567, -0.003329911164445934, -0.1261264604493927, -0.250593109134638, -0.05344939492321002, -0.14009783084384123, -0.046053263564980296, -0.07510466892071396, 0.08193799741579888, -0.07330379728948305, 0.22821678376891572, 0.08856788941740447, 0.25387352503748467, -0.167745123383862, 0.3578977416420829, 0.2630959337503712, -0.01752902972134918, -0.14758836074796874, 0.15987378630077156, 0.20786382416710747, 0.22694114274771282, 0.0832153736102498, 0.3152806941518707, -0.08787785616102818, 0.010819967516995141, -0.11524443226605052, 0.04063741378906506, 0.36192522734173904, -0.33225482764420067, 0.305875914040934, -0.5167173844009171, -0.13356945954758992], [9.797979797979798, -0.26210692408219305, 0.23533673147955958, 0.2594748105116363, -0.4214391525521112, 0.07276430833118352, -0.5132297987633969, 0.6838046195791683, 0.09812660429275077, -0.2618967855835865, -0.14178256441314432, -0.203566053176605, -0.0662570371784948, -0.322279549491652, -0.4348875887431274, -0.29258821960926223, -0.24274106196786174, -0.20133238207694845, -0.4306772158432322, -0.0637181494342958, 0.04475987066961164, -0.14537359451190401, -0.2925470094662981, -0.00865406353796088, -0.1861961970208929, -0.048223062142776794, -0.11673550322259868, 0.07612347831219764, -0.09426063377448449, 0.2688670622046793, 0.07385659470318488, 0.2840412426907027, -0.21279381178367335, 0.3263868532342302, 0.2829609909215692, -0.052751499664191154, -0.1551905998654157, 0.14950291530458282, 0.1767229852943466, 0.18647633762563276, 0.11254425637553964, 0.3622418323776341, -0.054237333113540946, -0.03136065028725159, -0.10019690510192832, 0.03339880079685174, 0.3518346147781527, -0.2888351393603103, 0.3127163518097775, -0.5181735623959396, -0.11848915963389368], [9.8989898989899, -0.2920945633603527, 0.2015614233543796, 0.25163656141789525, -0.42125779318355805, 0.07301095170685622, -0.4669004354826172, 0.7332987622186244, 0.1368213014614056, -0.2229818401641588, -0.18808935806674307, -0.1540429507466985, -0.11160644915479347, -0.3471782603537462, -0.3884784003415803, -0.25675671187891586, -0.24488732613150857, -0.16917846838894238, -0.4654024474062475, -0.09327136607039382, 0.031239679831067804, -0.15717752143821168, -0.33740198932685767, 0.023003504204131525, -0.22582086930827774, -0.034631869005506064, -0.13525790168758922, 0.08377005408570706, -0.07747127058274075, 0.2765873506985946, 0.08407644966703226, 0.29743932975093984, -0.2255602354973098, 0.3541053343968374, 0.26028426212245587, -0.004536625685332613, -0.19896479560955516, 0.17809539277912845, 0.19305239664765944, 0.1387261792386659, 0.0973761619464177, 0.32381704767077524, -0.07643283456657071, -0.07947817525595494, -0.13921338798733773, 0.05507413248637243, 0.3408955052873333, -0.281345363878944, 0.32148632268155947, -0.5261872628200067, -0.0823311865923424], [10.0, -0.27633208280745436, 0.19214955559113572, 0.20710829912608944, -0.4210851810143966, 0.053338703662131726, -0.4468056898253924, 0.7187715536130703, 0.16980223830322005, -0.2005502248728878, -0.17829298381561662, -0.1497919616524569, -0.12742394298218304, -0.3030034235386833, -0.3809170317379089, -0.23231107520566516, -0.25685419873169396, -0.21673327427471378, -0.4956534099252743, -0.06105031876190226, 0.059096149508489265, -0.16061961999642946, -0.33986814732814197, 0.05230611165387963, -0.22018928632721152, -0.042774496991128515, -0.11042623546429023, 0.08541854495819717, -0.05022611374684295, 0.23894468649730582, 0.08189725322594626, 0.33575195764452026, -0.18458262886232477, 0.31651704509162515, 0.2516797837734582, 0.011094703152224324, -0.16858516024009856, 0.20904477284842427, 0.15323727222923111, 0.13803014892731522, 0.14399285914480997, 0.3643967255185231, -0.06615739558683276, -0.10198229837097632, -0.14987484958917435, 0.031080530158347268, 0.3156268320225146, -0.2758417494182701, 0.34398189229017057, -0.5107667888820514, -0.12144728396834698]]}, \"id\": \"el913299767760\"});\n",
" })\n",
" });\n",
"}\n",
"</script>"
],
"metadata": {},
"output_type": "pyout",
"prompt_number": 7,
"text": [
"<IPython.core.display.HTML at 0x5f17550>"
]
}
],
"prompt_number": 7
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"%load_ext gist"
],
"language": "python",
"metadata": {},
"outputs": [
{
"ename": "SyntaxError",
"evalue": "invalid syntax (gist.py, line 1)",
"output_type": "pyerr",
"traceback": [
"\u001b[1;36m File \u001b[1;32m\"C:\\Users\\jhkwakkel\\.ipython\\extensions\\gist.py\"\u001b[1;36m, line \u001b[1;32m1\u001b[0m\n\u001b[1;33m Not Found\u001b[0m\n\u001b[1;37m ^\u001b[0m\n\u001b[1;31mSyntaxError\u001b[0m\u001b[1;31m:\u001b[0m invalid syntax\n"
]
}
],
"prompt_number": 8
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment